javascript – 在translate3d之后获取div位置

前端之家收集整理的这篇文章主要介绍了javascript – 在translate3d之后获取div位置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Javascript中,当我通过translate3d方法使用gpu移动元素时,元素样式左侧位置根本不会改变.因为cpu甚至不知道发生了任何动作.

在通过translate3d移动元素后,如何跟踪元素的新位置?

最佳答案
使用Element.getBoundingClientRect()获取元素坐标

这里只是一个从CSS3翻译(动画)元素中检索.left Rect属性的小例子:

const Box = document.getElementById('Box');
const printer = document.getElementById('printer');
const printBoxRectLeft = () => {
  printer.textContent = Box.getBoundingClientRect().left;
  requestAnimationFrame(printBoxRectLeft);
};

printBoxRectLeft();
#Box{
  width:30px; height:30px; background:red;
  animation: animX 3s infinite alternate;
}
@keyframes animX { to{ transform:translateX(300px); }}
Box">
原文链接:https://www.f2er.com/html/426876.html

猜你在找的HTML相关文章