hymn

忽有故人心头过,回首山河已是秋。

  menu
132 文章
0 浏览
1 当前访客
ღゝ◡╹)ノ❤️

js监控 scroll (页面滚动)

window.addEventListener('scroll', () => {
    let scrollTop = document.documentElement.scrollTop ||
        document.body.scrollTop ||
        document.querySelector('.element').scrollTop;
    console.log(scrollTop);
}, true);

标题:js监控 scroll (页面滚动)
作者:hymn
地址:https://dxyhymn.com/articles/2020/07/07/1594105879881.html