2016-12-30 16 views
-2

ブートストラップで、カルーセルの横にカルーセルインジケータを付けることは可能ですか?右側のいくつかのインジケータにフォントを設定したいので、どのスライダをクリックしているかわかります。ブートストラップの横にあるカルーセルインジケータ

絵は私が欲しいものを説明するために:あなたが好きな場所

enter image description here

答えて

0

あなたがコントロールを置くことができ、これらは、それらを動作させるtagasです。カルーセルIDとdata-slide="next"href="#myCarousel"ポイントは、動作を設定します。このような

<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">next</a> 

<a class="right carousel-control" href="#myCarousel" role="button" data-slide="prev">prev</a> 
0

何かがあなたのために働く可能性がありますhttps://codepen.io/anon/pen/zNOOrQ

HTML

<div class="container"> 
     <div class="page-header"> 
     <h1>Bootstrap carousel with number indicator</h1> 
     </div> 
    </div> 
    <div class="container"> 
     <div id="carousel-example-generic" class="carousel slide"> 
     <!-- Indicators --> 
     <ol class="carousel-indicators carousel-indicators-numbers"> 
     <li data-target="#carousel-example-generic" data-slide-to="0" class="active">Slide 1</li><br> 
     <li data-target="#carousel-example-generic" data-slide-to="1">Slide 2</li><br> 
     </ol> 

     <!-- Wrapper for slides --> 
     <div class="carousel-inner" role="listbox"> 
     <div class="item active"> 
      <img src="http://placehold.it/1200x500" alt="..."> 
     </div> 
     <div class="item"> 
      <img src="http://placehold.it/1200x500" alt="..."> 
     </div> 
     </div> 

     <!-- Controls --> 
     <a class="left carousel-control" href="#carousel-example-generic" 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="#carousel-example-generic" role="button" data-slide="next"> 
     <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> 
     <span class="sr-only">Next</span> 
     </a> 
    </div> 
    </div> 

CSS

.carousel-indicators-numbers { 
    li { 
     display: block; 
     position: relative; 
     left:140%; 
     bottom: 150px; 
     text-indent: 0; 
     margin: 0 2px; 
     width: 70px; 
     height: 30px; 
     border: none; 
     line-height: 30px; 
     color: #fff; 
     background-color: #999; 
     transition: all 0.25s ease; 
     &.active, &:hover { 
     margin: 0 2px; 
     width: 70px; 
     height: 30px; 
     background-color: #337ab7;   
     } 
    } 
} 
関連する問題