Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. if( $('.onepage-pagination li').length > 1 ){
  2. var steps = $('.onepage-pagination li').length;
  3. //console.log( 'steps', steps );
  4.  
  5. var i = 2;
  6. var autoplay = setInterval(function(){}, 4000);
  7. autoplay = setInterval(function(){
  8. $('[data-index="'+i+'"]').click();
  9. //console.log( 'step click', i );
  10. if(i == 5){
  11. i = 1
  12. }else{
  13. i++
  14. }
  15. }, 7000);
  16.  
  17. $(document).bind('mousewheel DOMMouseScroll touchstart', function(event) {
  18. clearInterval(autoplay);
  19. console.log( 'slide stopped');
  20. });
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement