Guest User

Untitled

a guest
Feb 23rd, 2019
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. // footer custom script
  2. function spicepress_testimonial_custom_script()
  3. {
  4. ?>
  5. <script>
  6. // TESTIMONIAL SLIDER
  7. jQuery(document).ready(function() {
  8.  
  9. jQuery("#testimonial-carousel").owlCarousel({
  10. navigation : true, // Show next and prev buttons
  11. autoplay : false,
  12. autoplayTimeout: testimonial_settings.animationSpeed,
  13. autoplayHoverPause:true,
  14. animateIn: testimonial_settings.animation,
  15.  
  16. loop:true, // loop is true up to 1199px screen.
  17. nav:false, // is true across all sizes
  18. margin:30, // margin 10px till 960 breakpoint
  19. autoHeight: true,
  20.  
  21. responsiveClass:true, // Optional helper class. Add 'owl-reponsive-' + 'breakpoint' class to main element.
  22. mouseDrag: false,
  23. touchDrag: false,
  24. items: 1,
  25. dots: true,
  26. //navText: ["<i class='fa fa-chevron-left'></i>","<i class='fa fa-chevron-right'></i>"],
  27. responsive:{
  28. 200:{ items:1 },
  29. 480:{ items:1 },
  30. 678:{ items:1 },
  31. 960:{ items:1 }
  32. }
  33. });
  34.  
  35. });
  36.  
  37.  
  38. </script>
  39. <?php
  40. }
  41. add_action('wp_footer','spicepress_testimonial_custom_script');
Add Comment
Please, Sign In to add comment