I am trying to animate a div moving 200px horizontally in JavaScript.
div
200px
The code below makes it jump the pixels, but is there a way to make i
You can easily do this through CSS3-Transition :
#challengeOneImageJavascript { -webkit-transition: left .2s; -moz-transition: left .2s; -o-transition: left .2s; transition: left .2s; }
Though, it is not supported by IE9 and earlier browser versions.