Advertisement
Guest User

BootStrap Carousel for Vanilla Forum

a guest
Feb 4th, 2015
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.06 KB | None | 0 0
  1.   {if $BodyID =='vanilla_discussions_index'}
  2.   <div id="carousel-example-generic" class="carousel slide" data-ride="carousel" data-interval="3000">
  3.   <!-- Indicators -->
  4.   <ol class="carousel-indicators">
  5.     <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
  6.     <li data-target="#carousel-example-generic" data-slide-to="1"></li>
  7.     <li data-target="#carousel-example-generic" data-slide-to="2"></li>
  8.   </ol>
  9.  
  10.   <!-- Wrapper for slides -->
  11.   <div class="carousel-inner">
  12.     <div class="item active">
  13.       <img src="http://placehold.it/1200x315" alt="...">
  14.       <div class="carousel-caption">
  15.           <h3>Caption Text</h3>
  16.       </div>
  17.     </div>
  18.     <div class="item">
  19.       <img src="http://placehold.it/1200x315" alt="...">
  20.       <div class="carousel-caption">
  21.           <h3>Caption Text</h3>
  22.       </div>
  23.     </div>
  24.     <div class="item">
  25.       <img src="http://placehold.it/1200x315" alt="...">
  26.       <div class="carousel-caption">
  27.           <h3>Caption Text</h3>
  28.       </div>
  29.     </div>
  30.   </div>
  31.   </div>
  32.   {/if}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement