Guest User

Untitled

a guest
Apr 26th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <div class='container_banner'>
  2. <div class='single-item'>
  3. <div><h3>1</h3></div>
  4. <div><h3>2</h3></div>
  5. <div><h3>3</h3></div>
  6. <div><h3>4</h3></div>
  7. <div><h3>5</h3></div>
  8. <div><h3>6</h3></div>
  9. </div>
  10.  
  11.  
  12. <div class='single-item2'>
  13. <div><h3>1</h3></div>
  14. <div><h3>2</h3></div>
  15. <div><h3>3</h3></div>
  16. <div><h3>4</h3></div>
  17. <div><h3>5</h3></div>
  18. <div><h3>6</h3></div>
  19. </div>
  20. </div>
  21.  
  22. $(".single-item").slick({
  23. dots: true,
  24. infinite: true,
  25. speed: 500,
  26. slidesToShow: 1,
  27. slidesToScroll: 1,
  28. autoplay: true,
  29. });
  30. $(".single-item2").slick({
  31. dots: true,
  32. infinite: true,
  33. speed: 500,
  34. slidesToShow: 1,
  35. slidesToScroll: 1,
  36. autoplay: true,
  37. });
  38.  
  39. .container_banner {
  40. margin: 0 auto;
  41. padding: 40px;
  42. width: 80%;
  43. color: #333;
  44. background: #419be0;
  45. }
  46.  
  47. .slick-slide {
  48. text-align: center;
  49. color: #419be0;
  50. background: white;
  51. }
Add Comment
Please, Sign In to add comment