Flash 加载时间如何影响定时 .delay 元素?
我会尽力正确地阐明这个问题。我有一个正在加载旁白音频文件(播放压缩的 .mp3 的简单 Flash 播放器)的页面,然后我将其与屏幕上出现的点同步。我使用 jQuery 中的 .delay 来实现这一点。
我的问题是 Flash 对象的加载时间不标准,并且会导致定时标签的显示失效。
有没有办法让延迟仅在 Flash 对象开始播放后才开始?
I will do my best to articulate this question properly. I have a page that is loading in a narration audio file(simple flash player playing a compressed .mp3), which I then sync up with points that appear on the screen. I am using the .delay in jQuery to achieve this.
My issue is that the load time of the flash object is not standard and will throw off the display of the timed tags.
Is there a way to have the delay only start after the flash object has started playing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 flowPlayer
http://flowplayer.org/demos/plugins/flash/ load-swf.html
使用这个js你可以控制flash何时播放或加载
Take a look on flowPlayer
http://flowplayer.org/demos/plugins/flash/load-swf.html
With this js You can controll when flash plays or loads
您可以尝试使用 jQuery 加载 flash 元素,然后使用回调函数。 Flash 视频需要自动播放。只是一个想法,还没有尝试过。
$("#flash").load("flash.html", function(){ // 你延迟的东西 });
You could try loading the flash element with jQuery and then use the callback function. The flash video will need to be on auto-play. Just an idea, haven't tried this.
$("#flash").load("flash.html", function(){ // Your delayed stuff });