元素的位置属性offset、client、scroll
发布时间:2023年12月27日
一、offset、client、scroll
1.1 offset
- offsetTop:元素到offsetParent顶部的距离
- offsetParent:距离元素最近的具有定位的祖宗元素(relative、absolute、fixed),若祖宗元素都不符合条件,offsetParent为body。
- offsetLeft:同上。
- offsetWidth = width + 左右padding +左右border
- offsetHeight = height + 上下padding + 上下border
注意他们的宽高都包含滚动条。
1.2 client
- clientWidth = width + 左右padding
- clientHeight = height + 上下padding
- clientTop = boder.top(上边框的宽度)
- clientLeft = boder.left(左边框的宽度)
1.3 scroll
- scrollWidth、scrollHeight
scrollWidth:获取指定标签内容层的真实宽度(可视区域宽度+被隐藏区域宽度) scrollHeight:获取指定标签内容层的真实高度(可视区域高度+被隐藏区域高度) - scrollTop、scrollLeft
scrollTop: 内容层顶部 到 可视区域顶部的距离
scrollLeft: 内容层左端 到 可视区域左端的距离
引用一张图可以直观表示这些属性
文章来源:https://blog.csdn.net/Mahuicool/article/details/135236045
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:chenni525@qq.com进行投诉反馈,一经查实,立即删除!