SOURCE

console 命令行工具 X clear

                    
>
console
function run(e) {
    let _box = document.querySelector('#box');
    _box.style.transform = 'translate3d(100px,0,0)';
    _box.style.transition = 'all 1s ease-in-out';
}
<div id="box"></div>

<button onclick="run()">run</button>
#box{
    background-color: lightblue;
    width: 100px;
    height: 100px;
}