Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. $("#slowbutton").click(function(){
  2.  
  3. $('.marquee-logo').slick('unslick');
  4.  
  5. $('.marquee-logo').slick({
  6. autoplay: true,
  7. infinite: true,
  8. autoplaySpeed: 0,
  9. slidesToScroll: 1,
  10. slidesToShow: 5,
  11. arrows: false,
  12. cssEase: 'linear',
  13. speed: 10000,
  14. initialSlide: 1,
  15. draggable: false,
  16. });
  17.  
  18. $("#nextbutton").click(function(){
  19. $('.marquee-logo').slick('unslick');
  20.  
  21. $('.marquee-logo').slick({
  22. autoplay: true,
  23. infinite: true,
  24. autoplaySpeed: 0,
  25. slidesToScroll: 1,
  26. slidesToShow: 5,
  27. arrows: false,
  28. cssEase: 'linear',
  29. speed: 300,
  30. initialSlide: 1,
  31. draggable: false,
  32. });
  33. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement