Advertisement
Guest User

Untitled

a guest
Aug 14th, 2021
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. add_action( 'wp_footer', function () { ?>
  2. <script>
  3.  
  4. jQuery("#theme-main-slider").owlCarousel({
  5. navigation : true, // Show next and prev buttons
  6. slideSpeed : 300,
  7. animateIn: custom_data.arilewp_main_slider_aniamte_in,
  8. animateOut: custom_data.arilewp_main_slider_aniamte_out,
  9. autoplay : false,
  10. smartSpeed: custom_data.arilewp_main_slider_smart_speed,
  11. autoplayTimeout: custom_data.arilewp_main_slider_scroll_speed,
  12. autoplayHoverPause:true,
  13. singleItem:true,
  14. mouseDrag: false,
  15. touchDrag: custom_data.arilewp_main_slider_mouse_drag_disabled,
  16. loop:true, // loop is true up to 1199px screen.
  17. nav:true, // is true across all sizes
  18. margin:0, // margin 10px till 960 breakpoint
  19. autoHeight: true,
  20. responsiveClass:true, // Optional helper class. Add 'owl-reponsive-' + 'breakpoint' class to main element.
  21. items: 1,
  22. dots: false,
  23. navText: ["<i class='fa fa-angle-left'></i>","<i class='fa fa-angle-right'></i>"]
  24. });
  25.  
  26. </script>
  27. <?php } );
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement