Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.59 KB | None | 0 0
  1. Add this after the video section :
  2. <section id="gallery">
  3. <<div id="myCarousel" class="carousel slide">
  4.   <!-- Carousel items -->
  5.   <div class="carousel-inner">
  6.      <div class="item active ad1">
  7.      </div>
  8.      <div class="item ad2">
  9.      </div>
  10.      <div class="item ad3">
  11.     </div>
  12.   </div>
  13.   <!-- Carousel nav -->
  14.    <a class="left carousel-control" href="#myCarousel" data-slide="prev">
  15.     <span class="glyphicon glyphicon-chevron-left"></span>
  16.     <span class="sr-only">Previous</span>
  17.   </a>
  18.   <a class="right carousel-control" href="#myCarousel" data-slide="next">
  19.     <span class="glyphicon glyphicon-chevron-right"></span>
  20.     <span class="sr-only">Next</span>
  21.   </a>
  22.   <ol class="carousel-indicators">
  23.     <li data-target="#myCarousel" data-slide-to="0" class="active"></li>
  24.     <li data-target="#myCarousel" data-slide-to="1"></li>
  25.     <li data-target="#myCarousel" data-slide-to="2"></li>
  26.   </ol>
  27. </div>
  28. </section>
  29.  
  30.  
  31. Add this at the end of the CSS code
  32.  
  33. #gallery {
  34.     padding: 8px;
  35. }
  36. #myCarousel {
  37.     width: 100%;
  38. }
  39. .carousel-inner .item {
  40.     width: 100%;
  41.     min-height: 600px;
  42.     height: auto;
  43.     -webkit-background-size: cover;
  44.     -moz-background-size: cover;
  45.     -o-background-size: cover;
  46.     background-size: cover;
  47.     background-attachment: scroll !important;
  48. }
  49. .ad1 {
  50.     background: url(../images/ts2.jpg) no-repeat center center fixed;
  51. }
  52. .ad2 {
  53.     background: url(../images/ts3.jpg) no-repeat center center fixed;
  54. }
  55. .ad3 {
  56.     background: url(../images/ts4.jpg) no-repeat center center fixed;
  57. }
  58.  
  59. Add the glyphicons .woff file in fonts folder
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement