通过暂停/播放循环寻呼机自动前进
我已经设法弄清楚谁可以使用具有自动前进功能的循环插件来制作寻呼机图库
$(function () {
$('#s4').before('<div id="nav" class="nav">').cycle({
fx: 'fade',
speed: 'slow',
timeout: 6000,
pager: '#nav',
before: function () {
if (window.console)
console.log(this.src);
}
});
});
但是,由于这会剥夺用户的一些控制权,因此添加一个像这样的播放/暂停按钮(最好是一个按钮)是很棒的 在此处播放暂停按钮
I've managed to work out who to make a pager gallery using the cycle plugin WITH auto advance
$(function () {
$('#s4').before('<div id="nav" class="nav">').cycle({
fx: 'fade',
speed: 'slow',
timeout: 6000,
pager: '#nav',
before: function () {
if (window.console)
console.log(this.src);
}
});
});
However as this takes away some control from the user so it's be great to add a play/pause button like this (preferably one button)
play pause buttons here
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: