This question already has answers here:
jquery : detecting scroll position
                                
                                    (3个答案)
                                
                        
                                3年前关闭。
            
                    
我在一些顶部标题/导航菜单固定的网站上看到了很酷的效果,并且随着用户滚动到网页上的某个点而缩小。

如何检测用户何时滚动到页面的某个位置?

最佳答案

就像是:

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

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

关于javascript - 检测用户何时滚动到页面上的特定位置/元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37930903/

10-13 04:11