我需要在owl carousel 2上禁用滑动效果并仅添加fadeIn效果。怎么可能?
我试过这段代码,但根本没有运气。
animateOut: 'fadeIn',
animateIn: 'fadeout',
nav:true,
由于
答案 0 :(得分:2)
INSERT INTO test.specialcustomers
(idCustomer, CustomerName)
SELECT test.customer.idCustomer, CustomerName
FROM test.customer
LEFT JOIN test.orders ON test.customer.idCustomer = test.orders.idCustomer
WHERE PaymentMethod ="PayPal";
答案 1 :(得分:0)
您需要添加一些CSS,请参阅here
fadeOut值是唯一内置的CSS动画样式。但是,你可以在Owl中使用大量额外的CSS动画。只需下载animate.css库,您就可以使用新的花式过渡来扩展Owl。
因此,如果您只想添加淡入淡出效果,则需要添加一些这样的CSS。
.animated {
visibility:hidden;
-webkit-animation-delay: 0.3s;
-moz-animation-delay: 0.3s;
-o-animation-delay: 0.3s;
-ms-animation-delay: 0.3s;
}
.owl-item.animated {
visibility: visible;
}