JavaScript中getBoundingClientRect()方法

getBoundingClientRect方法获取元素位置

getBoundingClientRect用于获得页面中某个元素的左,上,右和下分别相对浏览器视窗的位置。 
getBoundingClientRect是DOM元素到浏览器可视范围的距离(不包含文档卷起的部分)。 
该函数返回一个Object对象,该对象有6个属性:top,lef,right,bottom,width,height; 

这里的top、left和css中的理解很相似,width、height是元素自身的宽高,但是right,bottom和css中的理解有点不一样。right是指元素右边界距窗口最左边的距离,bottom是指元素下边界距窗口最上面的距离。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>getBoundingClientRect方法的使用</title>
</head>
<style type="text/css">
    * {
        margin: 0;
    }
</style>
<body>
<div id="div" style="width: 100px;height: 3000px;border: 1px solid #f00;margin: 0px;">获取距离</div>
<script type="text/javascript">
    (function () {
        var div = document.querySelector('div');  //  获取元素
        console.log(div.getBoundingClientRect().top);  //  元素上边距离页面上边的距离
        console.log(div.getBoundingClientRect().right);  //  元素右边距离页面左边的距离
        console.log(div.getBoundingClientRect().bottom);   //  元素底边距离页面上边的距离
        console.log(div.getBoundingClientRect().left);  //  元素左边距离页面左边的距离
    })()
</script>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/qq_30114149/article/details/79538388