今回はgetBoundingClientRectの使い方と互換処理について注意点を紹介します。
getBoundingClientRect の役割
getBoundingClientRect は、ビュー ウィンドウに対する特定の html 要素の位置セットを取得するために使用されます。
object.getBoundingClientRect(); を実行すると、要素の top、right、bottom、left、width、height 属性が object として返されます。
getBoundingClientRect()
このメソッドは、left、top、right、bottom の 4 つのプロパティを含む四角形オブジェクトを返します。要素の各辺とページの上辺および左辺との間の距離をそれぞれ表します。
var box=document.getElementById('box'); // 获取元素 alert(box.getBoundingClientRect().top); // 元素上边距离页面上边的距离 alert(box.getBoundingClientRect().right); // 元素右边距离页面左边的距离 alert(box.getBoundingClientRect().bottom); // 元素下边距离页面上边的距离 alert(box.getBoundingClientRect().left); // 元素左边距离页面左边的距离
ブラウザの互換性
IE5以降で対応可能ですが、いくつか修正が必要な点がございます
IE67 の左と上は 2px 小さくなり、幅や高さの属性はなくなります。
getBoundingClientRect を使用して、ウィンドウに対する HTML 要素の位置セットを取得するメソッドを作成します
<p id="test" style="width: 100px; height: 100px; background: #ddd;"></p> <script> function getObjXy(obj){ var xy = obj.getBoundingClientRect(); var top = xy.top-document.documentElement.clientTop+document.documentElement.scrollTop,//document.documentElement.clientTop 在IE67中始终为2,其他高级点的浏览器为0 bottom = xy.bottom, left = xy.left-document.documentElement.clientLeft+document.documentElement.scrollLeft,//document.documentElement.clientLeft 在IE67中始终为2,其他高级点的浏览器为0 right = xy.right, width = xy.width||right - left, //IE67不存在width 使用right - left获得 height = xy.height||bottom - top; return { top:top, right:right, bottom:bottom, left:left, width:width, height:height } } var test = getObjXy(document.getElementById('test')); alert("top:" + test.top + ", right:" + test.right + ", bottom:" + test.bottom + ", left:" + test.left); </script>
この記事のケースを読んだ後は、メソッドを習得したと思います。さらに興味深い情報については、他のセクションに注目してください。関連記事はPHP中国語サイトにあります!
推奨読書:
Vue は、ショッピング カートの小さなボール放物線効果を実装します。 詳細な説明
以上がGetBoundingClientRectの利用方法と互換処理の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。