Flash 加载时间如何影响定时 .delay 元素?

发布于 2025-01-04 05:59:57 字数 193 浏览 0 评论 0原文

我会尽力正确地阐明这个问题。我有一个正在加载旁白音频文件(播放压缩的 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

神经暖 2025-01-11 05:59:57

看看 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

暖阳 2025-01-11 05:59:57

您可以尝试使用 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 });

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文