Guest User

Untitled

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