Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. jQuery("#carousel").owlCarousel({
  2. ...
  3. navigation : true,
  4. navigationText : ["",""],
  5. ....
  6. });
  7.  
  8. owl.carousel.css
  9. owl.theme.default.css
  10. jquery-3.1.1.min.js
  11. owl.carousel.js
  12.  
  13. $('.owl-carousel').owlCarousel({
  14. loop:true,
  15. margin:10,
  16. nav:true,
  17. responsive:{
  18. 0:{
  19. items:1
  20. },
  21. 600:{
  22. items:3
  23. },
  24. 1000:{
  25. items:5
  26. }
  27. }
  28. })
  29.  
  30. navText : ["",""],
  31.  
  32. $('.owl-carousel').owlCarousel({
  33. loop:true,
  34. margin:10,
  35. nav:true,
  36. navText : ["",""],
  37. responsive:{
  38. 0:{
  39. items:1
  40. },
  41. 600:{
  42. items:3
  43. },
  44. 1000:{
  45. items:5
  46. }
  47. }
  48. })
  49.  
  50. .owl-prev{
  51. background-image: url("back.png");
  52. background-size: cover;
  53. width: 100px;
  54. height: 100px;
  55. }
  56. .owl-next{
  57. background-image: url("next.png");
  58. background-size: cover;
  59. width: 100px;
  60. height: 100px;
  61. }
  62.  
  63. background: #D6D6D6;
  64.  
  65. background-color: #D6D6D6;
  66.  
  67. background: #869791;
  68.  
  69. background-color: #869791;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement