這是我的代碼,以一個簡單的動畫。我的目的是讓圖像來回移動,如攻擊動畫。我目前有兩個問題;第一:一旦我按「攻擊」(我的按鈕),動畫不會刷新。第二:圖像/動畫只是出來,但不會回來。由於需要幫助:CSS3動畫 - 返回
<body>
<button id="button">Attack</button>
<img src="Thor.png" width="152" height="112" id="sprite" />
<script>
button = document.getElementById("button");
function changeMargin() {
var sprite = document.getElementById("sprite");
sprite.style.transition = "margin 0.5s ease-in-out 0s";
sprite.style.margin="0px 0px 0px 60px";
sprite.style.f
}
button.onclick = function() {
changeMargin();
};
</script>
</body>
看起來像你缺少changeMargin()函數的一些結束? – glenatron