关于getBoundingClientRect()

var odiv1=document.getElementById("div1");

odiv1.getBoundingClientRect().width ..........元素的可视宽度

odiv1.getBoundingClientRect().height ..........元素的可视高度

odiv1.getBoundingClientRect().left ..........元素左侧到可视区左侧的距离

odiv1.getBoundingClientRect().top ..........元素顶部到可视区顶部的距离

odiv1.getBoundingClientRect().right ..........元素右侧侧到可视区右侧的距离

odiv1.getBoundingClientRect().bottom .........元素底部到可视区底部的距离

你可能感兴趣的:(关于getBoundingClientRect())