首页 > 其他 > 详细

getBoundingClientRect

时间:2018-10-29 14:38:25      阅读:166      评论:0      收藏:0      [点我收藏+]

getBoundingClientRect() 用于获取元素相对于浏览器饰扣的位置,这个API早已经是W3C标准兼容性不用担心,不过在IE下有些许的区别

{
  top: ‘元素顶部相对于视口顶部的距离‘,
  bottom: ‘元素底部相对于视口底部的距离‘,
  left: ‘元素左边相对于视口左边的距离‘,
  right: ‘元素右边相对于视口左边的距离‘,
  height: ‘元素高度‘,
  width: ‘元素宽度‘
}

// IE兼容性写法
function getClientReat(client) {
    const { top, bottom, left, right, height, width } = client.getBoundingClientRect()
    return {
        top,
        bottom,
        left,
        right,
        height: height || right - left,
        width:    width || bottom - top
} }

兼容性参见 https://caniuse.com/#search=getBoundingClientRect

MDN: https://developer.mozilla.org/zh-CN/docs/Web/API/Element/getBoundingClientRect

 

getBoundingClientRect

原文:https://www.cnblogs.com/shenjp/p/9870394.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!