我正在使用一个不错的内容滑块插件,但缺少一个重要功能:鼠标悬停时不会停止自动旋转幻灯片。
这是脚本中的相关部分:
var dotimer = function (x){
if((opts.auto) == true) {
if(timer != null)
clearInterval(timer);
timer = setInterval(function() {
$(opts.next).click();
}, 3000);
}
}
dotimer();
完整的脚本可以在这里预览
我希望旋转在鼠标悬停时暂停并在鼠标悬停时恢复。
在此先感谢您的帮助!