2016-06-20 5 views

답변

0

뭔가 같은 :

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

    if ($(this).scrollTop() > topShow) { 
     // your logic here 
    } 
}); 
관련 문제