这种方法为什么无法修改transform的translate?

发布于 2022-09-12 13:22:01 字数 784 浏览 18 评论 0

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>

#aaa{
  width: 100px;height: 100px;
  background-color: orange;
  transform: translateX(150px);
}

</style>
</head>
<body>

<div id="aaa">
</div>

<script>

let a = document.querySelector('#aaa')
let aStyle = window.getComputedStyle(a)
console.log(aStyle.transform);
function set() {
  setTimeout(() => {
    aStyle.style.transform= "translateX(50px)";
}, 1000);
}
set()

</script>
</body>
</html>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雪若未夕 2022-09-19 13:22:01

不该是 aStyle.style.transform = 'translateX(50px)'
应该是 a.style.transform = 'translateX(50px)'
然后考虑兼容性,把 webkitTransform 也写上

離人涙 2022-09-19 13:22:01

The returned object is the same CSSStyleDeclaration type as the object returned from the element's style property. However, the two objects have different purposes:

  • The object from getComputedStyle is read-only, and should be used to inspect the element's style — including those set by a <style> element or an external stylesheet.
  • The _element_.style object should be used to set styles on that element, or inspect styles directly added to it from JavaScript manipulation or the global style attribute.
  1. getComputedStyle返回的是只读的
  2. 需要element.style方式更新
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文