gpt4 book ai didi

javascript - 如何在 Owl Carousel 中添加随机动画效果?

转载 作者:行者123 更新时间:2023-12-02 14:44:35 25 4
gpt4 key购买 nike

这是我的代码和 Owl Carousel 的效果

$(document).ready(function(){
$(".owl-carousel").owlCarousel({
autoplay:true,
autoplayTimeout:2000,
autoplayHoverPause:true,
dots: true,
merge:false,
loop:true,
items:1,
animateOut: 'bounce',
animateIn: 'zoomIn',
});
});

这里不再使用一个动画

animateOut: 'bounce',
animateIn: 'zoomIn',

我想在这里使用随机动画。我该怎么做?

最佳答案

试试这个:

function getRandomAnimation(){
var animationList = ['bounce', 'zoomIn'];
return animationList[Math.floor(Math.random() * animationList.length)];
}

$(document).ready(function(){
let props = {
autoplay:true,
autoplayTimeout:2000,
autoplayHoverPause:true,
dots: true,
merge:false,
loop:true,
items:1
};

props['animateOut'] = getRandomAnimation();
props['animateIn'] = getRandomAnimation();

$(".owl-carousel").owlCarousel(props);
});

关于javascript - 如何在 Owl Carousel 中添加随机动画效果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36713838/

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