我制作了我网站的主页,这样当您将鼠标悬停在不同的服务产品上时,相关图像也会显示。然而,当 Malsup 对 Cycle 的托管从 github 上消失时,该功能就丢失了。
这是我之前使用的代码,但不再正常工作。幻灯片仍然循环播放,但鼠标悬停功能无法正常工作。
<script type="text/javascript">
$(document).ready(function() {
$('#slideshow').cycle({
fx: 'fade',
pager : '#slideshow-nav',
pagerEvent: 'mouseover',
pauseOnPagerHover: true,
speed: 1000,
delay: 3000,
timeout: 9000,
pagerAnchorBuilder: function(idx, slide) {
// return sel string for existing anchor
return '.features ul li:eq(' + (idx) + ') a';
},
allowPagerClickBubble: true
});
});
</script>
我需要进行哪些更改才能使其再次运行?
谢谢。