嵌入式quicktime视频点击暂停如何防止?
我在 Firefox 中嵌入了一个 QuickTime 视频。它有效,但我想阻止用户通过用鼠标左键单击视频来停止视频。阅读苹果文档我没有找到任何答案。我想出了一个解决方法,我只是在整个视频上放置了一个几乎看不见的 div。该解决方法适用于 OS X 的 Firefox,但奇怪的是不适用于 Windows 中的同一版本的 Firefox。
我希望有一种方法,无论是否有解决方法,至少在 windows/firefox 环境中实现这一点。谢谢!
I embedded a quicktime video in firefox. It works, but i would like to prevent the users to stop the video by clicking on it with the left mouse button. Reading the apple documentation i didn't find any answear. I came up with a workaround, i just put an almost invisible div over the whole video. The workaround works in firefox for os X, but oddly does not for the same version of firefox in windows.
I would appreciate a way, workaround or not, to achive this at least in the windows/firefox environment. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,这就是嵌入的 QuickTime 对象的工作原理:
所以想法是给它一个不会打开的 URL,并且会阻止播放器暂停,因此在
就这样,单击它时无需暂停,并且它适用于所有浏览器,因为您正在使用 HREF 参数。 =)
Ok so this is how the embedded QuickTime object works:
So the idea is to give it the URL that will not open, and will prevent the player from pausing, so add this parameter:
href="javascript:function(){}"
in the<embed>
tag like so:And there you go, no pausing when you click it, and it works on all browsers because you are using the HREF parameter. =)