jquery 幻灯片和 html5 视频
我正在尝试使用 HTML5 视频作为 SlidesJS 幻灯片中的第一个元素。问题是,如果我单击播放按钮播放视频,幻灯片放映应停止,直到视频完全播放完毕,然后幻灯片放映应移至下一张幻灯片。此外,hoverpause 仅适用于图像,不适用于 html5 视频元素。
这是到目前为止我的 JavaScript 代码:
$(function () {
$('#slides').slides({
preload: true,
preloadImage: 'Images/loading.gif',
play: 5000,
pause: 2500,
hoverPause: true
});
});
I am trying to use an HTML5 video as the first element in a SlidesJS slideshow. The problem is if I click on the play button to play the video, the slideshow should stop until the video finishes completely and then the slideshow should move to the next slide. Also, the hoverpause works only on images but not on html5 video element.
Here's my JavaScript code so far:
$(function () {
$('#slides').slides({
preload: true,
preloadImage: 'Images/loading.gif',
play: 5000,
pause: 2500,
hoverPause: true
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
媒体事件概述了您可以利用的公开事件。
您只需在
play
事件发生时停止幻灯片放映,并在ending
事件发生时重新启动幻灯片即可。示例:
Media Events has an overview of the exposed events you can tap into.
You should simply stop the slideshow on the
play
event and restart it on theended
event.Example:
<video ... onPlay="//DoJSStuffHere" onEnded="//DoOtherJSStuffHere" />
就像 Semyazas 所说,但跳过 on-attributes 并使用 javascript 执行此操作:
Like Semyazas says, but skip the on-attributes and do it with javascript: