我正在尝试恢复 Jquery 循环插件幻灯片,但仅在延迟 X 毫秒之后。设置是让幻灯片在悬停时播放,并在不暂停时暂停(而其他内容基本上在其上滚动)以下代码在恢复之前没有注册延迟
非常感谢任何帮助
<script type="text/javascript">
$(document).ready(function() {
// configure the cycle plugin
$('.slideshowtwo').cycle({
fx: 'scrollUp',
speed: 1000,
timeout: 1200,
pause: 0
});
$('.slideshowtwo').cycle('pause'); // pause it right away.
$('.slideshowtwo').hover(
function() {
$(this).delay(5000).cycle('resume'); // start playing after delay
},
function(){
$(this).cycle('pause'); // pause the slideshow.
}
).trigger('hover');
});
</script>