Owl 轮播 V1 disable/enable 拖动
Owl carousel V1 disable/enable drag
嘿,我有一个关于 Owl Carousel.
的快速问题
如何在我第一次使用此代码时启用 touchdrag:
var owl = $(".full-slider");
owl.owlCarousel({
slideSpeed : 500,
singleItem : true,
pagination : false,
autoPlay : false,
afterMove : slideChanged,
startDragging : pauseOnDragging,
touchDrag : false,
mouseDrag : false
});
根据用户在我的页面上使用的选项,我想禁用拖动到下一张幻灯片的功能。但是,如果用户完成选项,那么我想重新启用它,以便他们可以拖动到下一张幻灯片。
如何做到这一点?我一直没能在网上找到一个很好的例子来做这件事。
我终于知道怎么做了:
owl.data('owlCarousel').reinit({
touchDrag : true,
mouseDrag : true
});
嘿,我有一个关于 Owl Carousel.
的快速问题如何在我第一次使用此代码时启用 touchdrag:
var owl = $(".full-slider");
owl.owlCarousel({
slideSpeed : 500,
singleItem : true,
pagination : false,
autoPlay : false,
afterMove : slideChanged,
startDragging : pauseOnDragging,
touchDrag : false,
mouseDrag : false
});
根据用户在我的页面上使用的选项,我想禁用拖动到下一张幻灯片的功能。但是,如果用户完成选项,那么我想重新启用它,以便他们可以拖动到下一张幻灯片。
如何做到这一点?我一直没能在网上找到一个很好的例子来做这件事。
我终于知道怎么做了:
owl.data('owlCarousel').reinit({
touchDrag : true,
mouseDrag : true
});