themearile

Untitled

Jul 29th, 2020
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. add_action( 'wp_footer', function () { ?>
  2. <script>
  3.  
  4. jQuery("#project-slider").owlCarousel({
  5. navigation : true, // Show next and prev buttons
  6. autoplay: true,
  7. autoplayTimeout: custom_data.arilewp_project_scroll_speed,
  8. autoplayHoverPause: true,
  9. smartSpeed: custom_data.arilewp_project_smart_speed,
  10. mouseDrag: custom_data.arilewp_project_mouse_drag_disabled,
  11.  
  12. loop:true, // loop is true up to 1199px screen.
  13. nav:true, // 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: 3,
  18. dots: false,
  19. navText: ["<i class='fa fa-angle-left'></i>","<i class='fa fa-angle-right'></i>"],
  20. responsive:{
  21. 100:{ items:1 },
  22. 480:{ items:1 },
  23. 768:{ items:2 },
  24. 1000:{ items:custom_data.arilewp_project_column_layout }
  25. }
  26. });
  27.  
  28. </script>
  29. <?php } );
Add Comment
Please, Sign In to add comment