Just remember to add the -webkit-css properties. He fixed all the problems for me.
This code worked in my case:
#animate {
position: absolute;
top: 100px;
left: 100px;
-webkit-animation: move 1s ease infinite;
}
@-webkit-keyframes move {
50% {
-webkit-transform: translate(100px, 100px);
}
}
You can also use 'from, to' and this will work fine.
source
share