Jquery Galleria:交互后再次自动播放
我的网站使用 Jquery Galleria。
我想要的是:加载时自动播放幻灯片,当我单击缩略图或导航时停止它,但在空闲时间后自动播放继续。
使用pauseOnInteraction:true,点击后自动播放将不会继续。 使用pauseOnInteraction:false,自动播放根本不会停止。
我该怎么做?
谢谢,埃里克
I'm using Jquery Galleria for my website.
What I want is: autoplay slideshow on load, stop it when I click on thumbnails or navigation, but after idle time the autoplay continue.
With pauseOnInteraction:true , the autoplay will not continue after click.
With pauseOnInteraction:false, the autoplay will not stop at all.
How can I do this?
Thanks, Eric
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 idle_enter 事件,如下所示:
实现
如果您使用的是1.2.4(昨天发布),您可以使用
Galleria.ready
来实现:或者使用
extend
选项:您可以设置这time Galleria 在使用
idleTime
选项进入空闲模式之前将等待。You can try using the idle_enter event like this:
Implementation
If you are using 1.2.4 (released yesterday), you can implement this using
Galleria.ready
:Or use the
extend
option:You can set the time Galleria will wait before entering idle mode using the
idleTime
option.