2
我想知道是否有方法使用bootstrap旋轉木馬跳過隱藏的幻燈片。我能夠使用ng-show()顯示和隱藏幻燈片,但傳送帶仍然會顯示空白幻燈片。只是想知道如果我能爲prev或next創建一個函數,然後進入下一張幻燈片,其中ng-show()= true?跳過Bootstrap Carousel中的隱藏幻燈片
<div class="carousel-inner" role="listbox">
<div class="item active" ng-show="solution.check">
<img src="img_chania.jpg" alt="Chania" width="460" height="345">
</div>
<div class="item" ng-show="solution.check">
<img src="img_chania2.jpg" alt="Chania" width="460" height="345">
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>