2016-11-10 6 views
-1

を自動再生しない、それが自動では、これを再生していないサイト link of the siteフクロウカルーセルは、私は自分のサイトに</p> <p>をフクロウカルーセルを使用しています

のリンクは、このHTMLコード

<script src="owl-carousel/owl.carousel.js"></script> 
 
<script type="text/javascript"> 
 
$(document).ready(function() { 
 

 
$("#owl-demo").owlCarousel({ 
 
\t autoplay : 5000, 
 
\t navigation : false, // Show next and prev buttons 
 
\t slideSpeed : 300, 
 
\t paginationSpeed : 400, 
 
\t singleItem:true 
 

 
}); 
 
$("#owl-demo2").owlCarousel({ 
 
autoplay : 5000, 
 
\t navigation : false, // Show next and prev buttons 
 
\t slideSpeed : 300, 
 
\t paginationSpeed : 400, 
 
\t singleItem:true 
 

 
}); 
 
$("#owl-demo3").owlCarousel({ 
 
autoplay : 5000, 
 
\t navigation : false, // Show next and prev buttons 
 
\t slideSpeed : 300, 
 
\t paginationSpeed : 400, 
 
\t singleItem:true 
 

 
}); 
 

 
}); 
 
</script>
<div id="owl-demo2" class="owl-carousel owl-theme"> 
 

 
\t \t \t \t \t <div class="item"> 
 
\t \t \t \t \t \t \t <img src="img/k1.jpg" class="img-responsive center-block" alt="" /> 
 
\t \t \t \t \t \t \t <div class="capt text-center"> 
 
\t \t \t \t \t \t \t \t قرية بوذيب 
 
\t \t \t \t \t \t \t </div> 
 
\t \t \t \t \t </div> 
 
\t \t \t \t \t <div class="item"> 
 
\t \t \t \t \t \t \t <img src="img/k1.jpg" class="img-responsive center-block" alt="" /> 
 
\t \t \t \t \t \t \t <div class="capt text-center"> 
 
\t \t \t \t \t \t \t \t قرية بوذيب 
 
\t \t \t \t \t \t \t </div> 
 
\t \t \t \t \t </div> 
 
\t \t \t \t \t <div class="item"> 
 
\t \t \t \t \t \t \t <img src="img/k1.jpg" class="img-responsive center-block" alt="" /> 
 
\t \t \t \t \t \t \t <div class="capt text-center"> 
 
\t \t \t \t \t \t \t \t قرية بوذيب 
 
\t \t \t \t \t \t \t </div> 
 
\t \t \t \t \t </div> 
 
\t \t \t \t </div> 
 
\t \t \t </div>
です リンクを確認して問題が見つかったかどうかを確認してください。すべての助けに感謝します!ここでは自分のカルーセルのドキュメントへのリンク http://owlgraphic.com/owlcarousel/#how-to は、あなたが autoplay : 5000を持っていますが、あなたのウェブサイトにあなたはそれを持っていない例で

答えて

0

を助けてくれてありがとうれます。問題を解決するためにあなたのウェブサイトで

更新このコードを:

$("#owl-demo").owlCarousel({ 
    autoplay : 5000, 
    navigation : false, // Show next and prev buttons 
    slideSpeed : 300, 
    paginationSpeed : 400, 
    singleItem:true 

}); 
$("#owl-demo2").owlCarousel({ 
    autoplay : 5000, 
    navigation : false, // Show next and prev buttons 
    slideSpeed : 300, 
    paginationSpeed : 400, 
    singleItem:true 

}); 
$("#owl-demo3").owlCarousel({ 
    autoplay : 5000, 
    navigation : false, // Show next and prev buttons 
    slideSpeed : 300, 
    paginationSpeed : 400, 
    singleItem:true 

}); 
+0

私はそれを更新しましたが、それはまた、あなたがそれを更新しなかった –

+0

仕事をdidnot ...ダブルチェック – Dekel

+0

私はそれを更新したが、それはまた仕事をdidnot –

関連する問題