0
<div class="row" style="padding-below:20px">
<div class="col-md-12">
<div class="carousel slide" id="carousel" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carousel" data-slide-to="0" class="active"></li>
<li data-target="#carousel" data-slide-to="1"></li>
<li data-target="#carousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="#">
<div class="carousel-caption">
<h2 class="media-heading">
Workshop/event name
</h2>
<p>Description in a few lines and click on more to see details of the workshop. Or maybe not keep the more button only.</p>
<p><a href="#"><button class="btn btn-info">More »</button></a></p>
</div>
</div>
<div class="item">
<img src="#">
<div class="carousel-caption">
<h2 class="media-heading">
Workshop/event name
</h2>
<p>Description in a few lines and click on more to see details of the workshop. Or maybe not keep the more button only.</p>
<p><a href="#"><button class="btn btn-info">More »</button></a></p>
</div>
</div>
<div class="item">
<img src="#">
<div class="carousel-caption">
<h2 class="media-heading">
Workshop/event name
</h2>
<p>Description in a few lines and click on more to see details of the workshop. Or maybe not keep the more button only.</p>
<p><a href="#"><button class="btn btn-info">More »</button></a></p>
</div>
</div>
</div>
<a class="left carousel-control" href="#carousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>Previous
</a>
<a class="right carousel-control" href="#carousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>Next
</a>
<div class="btn-group" id="cbuttons">
<button class="btn btn-danger btn-xs" id="cpause"><span class="glyphicon glyphicon-pause"></span></button>
<button class="btn btn-danger btn-xs" id="cplay"><span class="glyphicon glyphicon-play"></span></button>
</div>
</div>
</div>
</div>
私はカルーセルを作っています。ただし、クリック可能で前のカルーセルアイテムに移動する必要がある「前の」グリフコンの矢印は機能しません。それはまったく表示されません。私のコードはどこが間違っていますか?次のカルーセルアイテムにピントを付けるために使用されるボタンとグリフコンの矢印は正常に機能していますが、 'Previous'のものは表示されません。前回のカルーセルアイテムが動作しないためのボタン
コードをどこで変更したか教えてください。 –
このセクションを変更する必要があります Previous – Dhaarani
「次へ」と「前へ」ボタンのコードはまったく同じですから、なぜ「次へ」矢印とボタンを表示するだけで、「前のもの」ではないのですか? –