出于某种原因,Jquery cycle
的暂停命令$('#headerimgs').cycle('pause');
不会暂停图像过渡,它应该符合this link
可在此处测试:http://jsfiddle.net/r7cUb/17/
任何想法?
答案 0 :(得分:1)
您似乎正在使用Cycle Light插件,似乎它没有暂停功能,但如果我使用Cycle(全部)插件,它可以正常工作。
DEMO: http://jsfiddle.net/r7cUb/21/
使用此脚本
<script src="http://malsup.github.com/jquery.cycle.all.js" type="text/javascript"></script>
而不是
<script src="http://toniweb.us/gm/js/cycle.js" type="text/javascript"></script>
答案 1 :(得分:-1)
使用此
暂停
$('#pauseButton').click(function() {
$('#headerimgs').cycle('pause');
});
和简历
$('#resumeButton').click(function() {
$('#headerimgs').cycle('resume');
});