美文网首页
getBoundingClientRect的用法

getBoundingClientRect的用法

作者: 尹莫一 | 来源:发表于2018-09-08 18:48 被阅读0次

    getBoundingClientRect用于获取某个元素相对于视窗的位置集合。集合中有top, right, bottom, left等属性。

    1. 语法:这个方法没有参数。

    rectObject=object.getBoundingClientRect();

    2. 返回值类型:TextRectangle对象,每个矩形具有四个整数性质( 上, 右 , 下,和左 )表示的坐标的矩形,以像素为单位。

     rectObject.top:元素上边到视窗上边的距离;

     rectObject.right:元素右边到视窗左边的距离;

     rectObject.bottom:元素下边到视窗上边的距离;

     rectObject.left:元素左边到视窗左边的距离;

    示图

    3. 兼容性。

    3.1 IE5以上都能支持

    3.2 width和height:ie9以上支持width/height属性。

    兼容ie6~ie8的width/height的写法:

    var rectWidth = rectObject.right - rectObject.left;

    var rectHeight = rectObject.bottom - rectObject.top;

    3.3 在ie7及ie7以下left和top会多出两个像素。

    相关文章

      网友评论

          本文标题:getBoundingClientRect的用法

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