画面上で画像を移動するだけの次のコードがあります。
/* This is the animation code. */
@-webkit-keyframes example {
from { -webkit-transform: translateX(0px); }
to { -webkit-transform: translateX(1900px) }
}
/* This is the element that we apply the animation to. */
img#container {
-webkit-animation: example 1s ease 0s 1 normal;
}
頭を抱えることができない問題は、translateXアニメーションの値を、画面の中央のx位置など、JavaScriptで計算された値に設定することです。javascriptで「to」属性を設定してからID名を適用する方法はありますか?