Advertisement
EduardET

Untitled

Jul 18th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ( function( $ ) {
  2.     $( document ).ready( function() {
  3.         $('.owl-carousel').owlCarousel({
  4.             loop:true,
  5.             margin:10,
  6.             responsiveClass:true,
  7.             responsive:{
  8.                 0:{
  9.                     items:1,
  10.                     nav:true
  11.                 },
  12.                 600:{
  13.                     items:2,
  14.                     nav:false
  15.                 },
  16.                 1000:{
  17.                     items:3,
  18.                     nav:true,
  19.                     loop:true,
  20.                     autoplay:true,
  21.                     autoplayTimeout:5000,
  22.                     autoplayHoverPause:true
  23.                 }
  24.             }
  25.         })
  26.        
  27.     } );
  28. } )( jQuery );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement