OWL CAROUSEL の次の問題があります。単一アイテム オプションとホバー オプションで停止する自動再生を使用しています。各アイテムの内部では、モーダルを開くためにブートストラップ ボタンを使用しています。モーダルは OWL CAROUSEL の外にあります。カルーセルの最後のアイテムに到達するまで、すべてが正常に機能します。ボタンを押すとモーダルが開き、スライドが変更され(自動再生のため)、モーダルを閉じると、それが発生しました。ホバー時の停止も削除しました。最後のアイテムモーダルを開いた後、カルーセルが動かなくなりました。
レプリケートされた問題は、こちらの jsfiddle で確認できます
フクロウのカルーセル
<div id="owl-demo" class="owl-carousel">
<div class="item">
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">MODAL</button>
<img src="http://www.highsnobiety.com/files/2013/05/lamborghini-egoista-concept-car-9.jpg" alt="The Last of us">
</div>
<div class="item">
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">MODAL</button>
<img src="http://www.highsnobiety.com/files/2013/05/lamborghini-egoista-concept-car-9.jpg" alt="The Last of us">
</div>
</div>
ブートストラップ スタンダード モーダル
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria- labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
CSS
#owl-demo .item img{
display: block;
width: 100%;
height: 300px;
}
#owl-demo .item button {
position: absolute;
}
Jクエリ
$(document).ready(function() {
$("#owl-demo").owlCarousel({
navigation : false,
autoPlay: 2200,
slideSpeed : 300,
paginationSpeed : 800,
singleItem : true,
pagination: true,
stopOnHover: true,
});
});