gpt4 book ai didi

jquery - 淡入淡出 Owl Carousel 效果不起作用

转载 作者:行者123 更新时间:2023-12-03 22:29:58 26 4
gpt4 key购买 nike

    <script>
$(document).ready(function () {
$("#owl-demo").owlCarousel({
navigation: true,
navigationText: ["", ""],
slideSpeed: 300,
paginationSpeed: 400,
autoPlay: true,
mouseDrag: true,
singleItem: true,
animateIn: 'fadeIn',
animateOut: 'fadeOut'
});
});
</script>

上面是我的 Owl Carousel 引用,我想要淡入淡出效果,但它似乎没有出现。相反,它显示为滑动效果。

最佳答案

我认为没有任何淡入淡出过渡选项:

transitionStyle: "fade" // not available in the docs

另一个选项是使用 animate.css与之结合:

$("#owl-demo").owlCarousel({
navigation: true,
navigationText: ["", ""],
slideSpeed: 300,
paginationSpeed: 400,
autoPlay: true,
mouseDrag: true,
singleItem: true,
animateIn: 'fadeIn', // add this
animateOut: 'fadeOut' // and this
});

关于jquery - 淡入淡出 Owl Carousel 效果不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33798845/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com