getBoundingClientRect用法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了getBoundingClientRect用法相关的知识,希望对你有一定的参考价值。

getBoundingClientRect()表示元素相对于视窗的集合,left、right、top、bottom(元素的位置)等属性

也可以得到元素的width和height

如: objRect = obj.getBoundingClientRect();

   left = objRect.left;

   right = objRect.right;

   top = objRect.top;

   bottom = objRect.bottom;

   width = right - left;

   height= bottom - top;

  

以上是关于getBoundingClientRect用法的主要内容,如果未能解决你的问题,请参考以下文章

getBoundingClientRect的快速理解

[原]js获取dom元素的实际位置及相对坐标

[转] getBoundingClientRect判断元素是否可见

getBoundingClientRect()方法

Element.getBoundingClientRect()

getBoundingClientRect();不工作..?