2017-03-23 9 views
0

私はこのページに問題があります:http://wtgecommerce.powersoftware.in/land。 YouTubeのビデオが何かをリフレッシュするように点滅します。 デベロッパーコンソールを開きました。これはOwl Carouselによって発生している可能性があることに気付きました。 あなたは点滅する前に、ここでのコードを見ることができます:Owl Carouselがyoutubeビデオの点滅を引き起こします

before blinking code

以降:

enter image description here

これが起こっているのはなぜ?どのように私はこれを修正することができますか? ありがとうございます。

答えて

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; 
} 
+0

にこれらの行をコメント! – sharkbait

+0

これは機能しますか? – Amal

+0

はい、どうもありがとうございます! – sharkbait

関連する問題