Advertisement
Guest User

Untitled

a guest
Dec 15th, 2018
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
  2. <!-- Indicators -->
  3. <ol class="carousel-indicators">
  4. <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
  5. <li data-target="#carousel-example-generic" data-slide-to="1"></li>
  6. <li data-target="#carousel-example-generic" data-slide-to="2"></li>
  7. </ol>
  8.  
  9. <!-- Wrapper for slides -->
  10. <div class="carousel-inner" role="listbox">
  11. <div class="item active">
  12. <img src="https://placehold.it/1920x1080" alt="...">
  13. <div class="carousel-caption">
  14. ...
  15. </div>
  16. </div>
  17. <div class="item">
  18. <img src="https://placehold.it/1920x1080" alt="...">
  19. <div class="carousel-caption">
  20. ...
  21. </div>
  22. </div>
  23. ...
  24. </div>
  25.  
  26. <!-- Controls -->
  27. <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
  28. <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
  29. <span class="sr-only">Previous</span>
  30. </a>
  31. <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
  32. <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
  33. <span class="sr-only">Next</span>
  34. </a>
  35. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement