我想获得旋转后的元素的相同offsetTop,就像不会旋转一样。
dom是作为元素存储在HTMLCollection中的:
this.collect = document.getElementsByClassName('topEl');
我获得的offsetTop位置:
this.collect[0].offsetTop;
实际上,它的工作原理与预期的一样,只是我将dom变成这样:
// result: 1200px
<div style="transform: rotateZ(0deg)" class="topEl">
// result: 0px
<div style="transform: rotateZ(10deg)" class="topEl">