Guest User

Untitled

a guest
Jan 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function loopnews(){
  2. var $active = jQuery('div.newsTicker>ul>li.active'),
  3. $next = $active.next('li');
  4. //console.log($next);
  5. if($next.length != 1){
  6. $next = jQuery('div.newsTicker>ul>li:eq(0)')
  7. }
  8. $active.fadeOut(500,function(){
  9. $active.removeClass('active');
  10. $next.addClass('active').fadeIn(1000,function(){
  11. setTimeout(loopnews,3000);
  12. })
  13. });
  14. }
Add Comment
Please, Sign In to add comment