<!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>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…