我们可以调用getBoundingClientRect
方法,来获取,一个Dom元素距离视窗的各种信息。
详见:https://developer.mozilla.org/zh-CN/docs/Web/API/Element/getBoundingClientRect
var aDiv = document.getElementById('aDiv');
console.log(aDiv.getBoundingClientRect());
// console.log 的信息:
{
bottom: 1158
height: 45
left: 0
right: 750
top: 1113
width: 750
x: 0
y: 1113
}
网友评论