我有以下代码可以简单地在屏幕上移动我的图像:
/* 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 动画值设置为用 javascript 计算的值,例如屏幕中心的 x 位置。有没有办法在javascript中设置“to”属性然后应用id名称?