Advertisement
Guest User

Untitled

a guest
May 20th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. CSS
  2. #owl-demo .item{
  3. margin: 3px;
  4. }
  5. #owl-demo .item img{
  6. display: block;
  7. width: 100%;
  8. height: auto;
  9. }
  10. HTML
  11. <div id="demo">
  12. <div class="container">
  13. <div class="span">
  14. <div id="owl-demo">
  15.  
  16. <div class="item"><img src="http://placehold.it/350x180" alt="Owl Image"></div>
  17. <div class="item"><img src="http://placehold.it/350x180" alt="Owl Image"></div>
  18. <div class="item"><img src="http://placehold.it/350x180" alt="Owl Image"></div>
  19. <div class="item"><img src="http://placehold.it/350x180" alt="Owl Image"></div>
  20. <div class="item"><img src="http://placehold.it/350x180" alt="Owl Image"></div>
  21. <div class="item"><img src="http://placehold.it/350x180" alt="Owl Image"></div>
  22. <div class="item"><img src="http://placehold.it/350x180" alt="Owl Image"></div>
  23. <div class="item"><img src="http://placehold.it/350x180" alt="Owl Image"></div>
  24.  
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. JS
  30. $("#owl-demo").owlCarousel({
  31.  
  32. autoPlay: 3000, //Set AutoPlay to 3 seconds
  33.  
  34. items : 4,
  35. itemsDesktop : [1199,3],
  36. itemsDesktopSmall : [979,3]
  37.  
  38. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement