滚动条事件

Posted lazyli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了滚动条事件相关的知识,希望对你有一定的参考价值。

window.onscroll = function (ev) {
        //console.log("距离顶部的高度:"+$(document).scrollTop());
        var heightY = $(document).scrollTop();
        var x = $(document).scrollLeft();
        if(heightY > 0){
            console.log("距离顶部的高度:"+heightY);
            $("#threadId").css("position","fixed");
        }
        if(x > 0 ){
            console.log("距离左边:"+x);
            $("#threadId").css("position","static");
        }
    }

  滚动条滚动时,发生的事件

以上是关于滚动条事件的主要内容,如果未能解决你的问题,请参考以下文章

如何在滚动视图中设置谷歌地图片段

Winform鼠标滑轮控制自定义滚动条

jQuery 滚动条高度触发事件

如何获取网页滚动条滚动事件

如何用js监听滚动条滚动事件

BootStrap有用代码片段(持续总结)