Twitter ブートストラップ バージョン: 2.0.3
HTML コードの例:
<!DOCTYPE html>
<html dir="ltr" lang="en-US" xmlns:og="http://opengraphprotocol.org/schema/">
<head>
<link rel="stylesheet" type="text/css" media="all" href="reddlec/style.css" />
<script type="text/javascript">
$(document).ready(function() {
$('.carousel').each(function(){
$(this).carousel({
pause: true,
interval: false
});
});
});
</script>
<script src="http://twitter.github.com/bootstrap/assets/js/jquery.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-transition.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-carousel.js"></script>
</head>
<body>
<div id="myCarousel" class="carousel slide">
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item">…</div>
<div class="item">…</div>
<div class="item">…</div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">›</a>
</div>
</body>
</html>
CSS: bootstrap.cssで提供
問題:ご覧のとおり、一時停止モードを有効にし、サイクリングを無効にしました。しかし、カルーセルの左または右のコントロールをクリックすると、マウスリーブでカルーセルがデフォルトの間隔 (1 サイクルあたり 5 秒) で循環を開始します。
サイクリングを強制的に無効にするにはどうすればよいですか? ユーザーが手動で画像を循環させたい。
この問題は、こちらのテスト サイトで実際にテストできます。