JavaScript animation

前端 未结 7 2028
忘了有多久
忘了有多久 2020-11-29 09:47

I am trying to animate a div moving 200px horizontally in JavaScript.

The code below makes it jump the pixels, but is there a way to make i

7条回答
  •  伪装坚强ぢ
    2020-11-29 09:58

    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.

提交回复
热议问题