我在此页面遇到问题:http://wtgecommerce.powersoftware.in/land。 youtube视频闪烁就像刷新它一样。 我打开了开发者控制台,我注意到这可能是由Owl Carousel引起的。 你可以在闪烁之前看到这里的代码:
之后:
为什么会这样?我怎么解决这个问题? 非常感谢你。
答案 0 :(得分:0)
我认为这是由于淡入淡出动画造成的。
删除transitionStyle: "fade"
或在owl.transitions.css中注释这些行
.owl-fade-out {
z-index: 10;
-webkit-animation: fadeOut .7s both ease;
-moz-animation: fadeOut .7s both ease;
animation: fadeOut .7s both ease;
}
.owl-fade-in {
-webkit-animation: fadeIn .7s both ease;
-moz-animation: fadeIn .7s both ease;
animation: fadeIn .7s both ease;
}