2016-06-20 107 views

回答

0

喜歡的東西:

$(window).scroll(function() { 
    var topShow = 150; 

    if ($(this).scrollTop() > topShow) { 
     // your logic here 
    } 
}); 
相關問題