我使用点来导航猫头鹰旋转木马2。 我想将导航从点击更改为悬停。 因此,当我将第二个点悬停时,旋转木马会跳到第二张幻灯片。 在文档中找不到这样的内容。
对此有什么简单的解决方案吗?
答案 0 :(得分:2)
最简单的解决方案是这样的:
$('.own-carousel .dot').hover(function() {
$(this).click();
}, function() {});
这只会在悬停时触发点击事件。我不确定课程own-carousel
和dot
,最好检查一下。