Advertisement
Guest User

Untitled

a guest
Jan 21st, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. <template>
  2. <div id="home">
  3. <b-carousel id="homeSlider"
  4. style="text-shadow: 1px 1px 2px #333;"
  5. controls
  6. :interval="4000"
  7. img-width="1024"
  8. img-height="480"
  9. v-model="slide"
  10. @sliding-start="onSlideStart"
  11. @sliding-end="onSlideEnd">
  12. <b-carousel-slide>
  13. <img slot="img" class="d-block img-fluid w-100" width="1024" height="480"
  14. src="../assets/images/img1.png" alt="image slot">
  15. <h1><b>Simplifying the journey</h1>
  16. </b-carousel-slide>
  17. <b-carousel-slide>
  18. <img slot="img" class="d-block img-fluid w-100" width="1024" height="480"
  19. src="../assets/images/img2.png" alt="image slot">
  20. <h1><b>Connecting the dots </h1>
  21. </b-carousel-slide>
  22. <b-carousel-slide>
  23. <img slot="img" class="d-block img-fluid w-100" width="1024" height="480"
  24. src="../assets/images/img3.png" alt="image slot">
  25. <h1><b>The critical decisions</h1>
  26. </b-carousel-slide>
  27. </b-carousel>
  28. <!-- <div class="carousel-controls-separator"></div> -->
  29. </div>
  30. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement