Guest User

Untitled

a guest
Jul 22nd, 2020
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. add_action( 'wp_footer', function () { ?>
  2. <script>
  3.  
  4. jQuery("#testimonial-slider").owlCarousel({
  5. //navigation : true, // Show next and prev buttons
  6. autoplay: false,
  7. autoplayTimeout: custom_data.arilewp_testimonial_scroll_speed,
  8. autoplayHoverPause: true,
  9. smartSpeed: custom_data.arilewp_testimonial_smart_speed,
  10. mouseDrag: custom_data.arilewp_testimonial_mouse_drag_disabled,
  11.  
  12. loop:true, // loop is true up to 1199px screen.
  13. nav:false, // is true across all sizes
  14. margin:30, // margin 10px till 960 breakpoint
  15. autoHeight: true,
  16. responsiveClass:true, // Optional helper class. Add 'owl-reponsive-' + 'breakpoint' class to main element.
  17. //items: 1,
  18. dots: true,
  19. navText: ["<i class='fa fa-arrow-left'></i>","<i class='fa fa-arrow-right'></i>"],
  20.  
  21. responsive:{
  22. 100:{ items:1 },
  23. 480:{ items:1 },
  24. 768:{ items:2 },
  25. 1000:{ items:custom_data.arilewp_testimonial_column_layout }
  26.  
  27. }
  28. });
  29.  
  30. </script>
  31. <?php } );
Add Comment
Please, Sign In to add comment