美文网首页
尺寸相关、滚动事件

尺寸相关、滚动事件

作者: BJ000 | 来源:发表于2019-11-04 09:18 被阅读0次

    1、获取和设置元素的尺寸

    width()、height()    获取元素width和height 

    innerWidth()、innerHeight()  包括padding的width和height 

    outerWidth()、outerHeight()  包括padding和border的width和height 

    outerWidth(true)、outerHeight(true)  包括padding和border以及margin的width和height

    2、获取元素相对页面的绝对位置

    offset()

    3、获取可视区高度

    $(window).height();

    4、获取页面高度

    $(document).height();

    5、获取页面滚动距离

    $(document).scrollTop(); 

    $(document).scrollLeft();

    6、页面滚动事件

    $(window).scroll(function(){ 

        ...... 

    })

    实例

    1、层级菜单

    2、选项卡

    3、置顶菜单

    4、滚动到顶部

    6、手风琴效果

    5、无缝滚动

    相关文章

      网友评论

          本文标题:尺寸相关、滚动事件

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