美文网首页
javascript检测滚动距离

javascript检测滚动距离

作者: 守鶴yuan | 来源:发表于2018-03-14 23:00 被阅读6次
    window.onscroll =function () {
      var t = document.documentElement.scrollTop || document.body.scrollTop;
      //t即滚动的距离
      if ( t > 27 ) {
       
       } else if ( t == 0) {
    
      }
    }
    

    相关文章

      网友评论

          本文标题:javascript检测滚动距离

          本文链接:https://www.haomeiwen.com/subject/tezqqftx.html