首页 > 解决方案 > Owl Carousel 使用 autoPlayTimeout 限制循环次数不会停止循环

问题描述

autoPlayTimeout 不打算停止 autoplay:true 吗?因为无论我尝试什么猫头鹰旋转木马都不会停止。

$('.owl-carousel').owlCarousel({
         items: 1,
         autoplay:true,
        autoPlaySpeed:500,
        autoPlayTimeout:5000,
        autoPlayHoverPause:true,
        loop:true,

肯定有人想要永远循环以外的东西,因为那很烦人。

标签: javascriptowl-carousel

解决方案


要停止 owl carousel,您可以触发:

$('.owl-carousel').trigger('stop.owl.autoplay')

JSFiddle


推荐阅读