Home › Forums › CSS › How to make CSS3 animation › Re: How to make CSS3 animation
March 22, 2013 at 4:18 pm
#129399
Participant
Try reversing your 0% and 100%
@-webkit-keyframes move {
0% { margin-left:-800px; }
100% { margin-left:0px; }
}