2014-10-10 97 views
0

我有一個小的JQuery腳本,當用戶向下滾動頁面時,我想運行900px。我有這個到目前爲止:當我向下滾動頁面時讓JQuery觸發900px

<script> 
$(document).ready(function() {  
     $(window).on('scroll', function(){ 
      if($(window).scrollTop > 900){ 
        jQuery({ Counter: 0 }).animate({ Counter: $('.single').text() }, { 
         duration: 1000, 
         step: function() { 
         $('.single').text(Math.ceil(this.Counter)); 
         } 
        }); 

        //SEVERAL VALUES 

        $('.Count').each(function() { 
         jQuery({ Counter: 0 }).animate({ Counter: $(this).text() }, { 
         duration: 1000, 
         step: function() { 
          $(this).text(Math.ceil(this.Counter)); 
         } 
         }); 
        }); 
      } 
     });  
    }); 
    </script> 

我現在有上述但它似乎沒有工作?

回答

0

你可以像下面這樣做

$(window).on('scroll', function(){ 
    if($(window).scrollTop > 900){ 
    // Your code to execute when the window is scrolled more than 900px 
    } 
}); 
+0

我已經修改了我的代碼,但是,它似乎並沒有工作。不知道爲什麼? – user1432315 2014-10-10 14:10:16

+0

小提琴,我不知道你在做什麼:) – 2014-10-10 14:14:59

相關問題