TypeScript获取offset旋转的Dom的顶部

时间:2019-05-26 15:14:36

标签: angular typescript css3

我想获得旋转后的元素的相同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">

0 个答案:

没有答案