Advertisement
Guest User

Untitled

a guest
Jul 31st, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //interval
  2.         var int;
  3.         clearInterval(int);
  4.         int = setInterval(function(){
  5.             if(!homeIsAnimating){
  6.  
  7.                 if(curNum<total-1){
  8.                     curNum++;
  9.                 }
  10.                 else{
  11.                     curNum = 0;
  12.                 }
  13.                
  14.                 curLi = ekoSlider.find('.current');
  15.                 nextLi = li.eq(curNum);
  16.                
  17.                                
  18.                 removeHomeSlide(curLi,nextLi);     
  19.                
  20.             }                  
  21.          }, 6000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement