Slide in from left CSS animation
问题 I would like to make a simple animation, when the page loads, my logo should animate from the left side of the box to the right side. I have tried many versions, but haven't succeeded yet. HTML <body> <div> <img src="logo.png" alt="logo" style="width:170px;height:120px;"> </div> </body> CSS div { width:640px; height:175px; background:blue; -webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; -ms-transition: all 1s ease-in-out;