zoukankan      html  css  js  c++  java
  • clientWidth和clientHeigh 、 clientTop和clientLeft、offsetWidth和offsetHight 、 offsetTop和offsetLeft

    一、clientWidth和clientHeigh 、 clientTop和clientLeft
            1,clientWidth的实际宽度

            clientWidth = width+左右padding

            2,clientHeigh的实际高度

             clientHeigh = height + 上下padding 

            3,clientTop的实际宽度

               clientTop = boder.top(上边框的宽度)

            4,clientLeft的实际宽度

                clientLeft = boder.left(左边框的宽度)

        二、offsetWidth和offsetHight 、 offsetTop和offsetLeft
             1,offsetWidth的实际宽度

                offsetWidth = width + 左右padding + 左右boder

             2,offsetHeith的实际高度

                          offsetHeith = height + 上下padding + 上下boder

             3,offsetTop实际宽度

                           offsetTop:当前元素 上边框 外边缘 到 最近的已定位父级(offsetParent) 上边框 内边缘的 距离。如果父

                     级都没有定位,则分别是到body 顶部 和左边的距离

                     4,offsetLeft实际宽度

                  offsetLeft:当前元素 左边框 外边缘 到 最近的已定位父级(offsetParent) 左边框 内边缘的            距离。如果父级都没有定位,则分别是到body 顶部 和左边的距离

        三、scrollWidth和scrollHeight 、 scrollTop和scrollLeft
            1,scrollWidth实际宽度

                   scrollWidth:获取指定标签内容层的真实宽度(可视区域宽度+被隐藏区域宽度)。

                   2,scrollHeight的实际高度

             scrollHeight:获取指定标签内容层的真实高度(可视区域高度+被隐藏区域高度)

             3,scrollTop

                    scrollTop :内容层顶部 到 可视区域顶部的距离。

                    4,scrollLeft

                    scrollLeft:内容层左端 到 可视区域左端的距离.

  • 相关阅读:
    绘制文字时如何让文字居中显示
    python获取指定时间段内的随机不重复的时间点
    python时间时分秒与秒数的互相转换
    python获取字母在字母表对应位置的几种方法及性能对比较
    配置指定使用tcc编译器编译nim程序
    nim也玩一行流,nim版的list comprehension
    python 中x%2 x&1 判断偶数奇数 性能对比
    推荐记录片系列:Ultimate Factories系列和MegaStructures系列
    计算机开放电子书汇总(包括二十多本python相关的图书教程)
    PyAutoGUI-python版的autoit/AHK
  • 原文地址:https://www.cnblogs.com/lezuw/p/11004035.html
Copyright © 2011-2022 走看看