美文网首页
html中的offsetTop的使用

html中的offsetTop的使用

作者: LcoderQ | 来源:发表于2020-11-30 12:27 被阅读0次
<article class="baidu_pl" 
style="box-sizing: inherit; 
outline: 0px; display: block;
 position: relative; padding-top: 16px;">
</article>

1. offsetTop:元素到offsetParent顶部的距离

2. offsetParent:距离元素最近的一个具有定位的祖宗元素(relative,absolute,fixed),若祖宗都不符合条件,offsetParent为body。如下图所示:获取child的offsetTop,图1的offsetParent为father,图2的offsetParent为body。

image

3. 注意:只有元素show(渲染完成)才会计算入offsetTop,若是中间有元素数据需要异步获取,会导致最终获取的offsetTop值偏小

相关文章

网友评论

      本文标题:html中的offsetTop的使用

      本文链接:https://www.haomeiwen.com/subject/zxqswktx.html