這次帶給大家getBoundingClientRect使用方法及相容性處理,getBoundingClientRect使用方法及相容性處理的注意事項有哪些,下面就是實戰案例,一起來看一下。
getBoundingClientRect的作用
# getBoundingClientRect用來取得某個html元素相對於視窗的位置集合。
執行 object.getBoundingClientRect();會得到元素的top、right、bottom、left、width、height屬性,這些屬性以一個物件的方式回傳。
getBoundingClientRect()
# 這個方法傳回一個矩形對象,包含四個屬性:left、top、right和bottom。分別表示元素各邊與頁面上邊和左邊的距離。
var box=document.getElementById('box'); // 获取元素 alert(box.getBoundingClientRect().top); // 元素上边距离页面上边的距离 alert(box.getBoundingClientRect().right); // 元素右边距离页面左边的距离 alert(box.getBoundingClientRect().bottom); // 元素下边距离页面上边的距离 alert(box.getBoundingClientRect().left); // 元素左边距离页面左边的距离
瀏覽器相容性
# ie5以上都能支持,但是又一點點地方需要修正一下,
IE67的left、top會少2px,且沒有width、height屬性。
利用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中文網其它相關文章!
推薦閱讀:
以上是getBoundingClientRect使用方法及相容性處理的詳細內容。更多資訊請關注PHP中文網其他相關文章!