Webkit CSS Animation issue - persisting the end state of the animation? [duplicate]
问题 This question already has answers here : Maintaining the final state at end of a CSS3 animation (4 answers) Closed 4 years ago . Given the following CSS3 animation.... <style type="text/css" media="screen"> .drop_box { -webkit-animation-name: drop; -webkit-animation-duration: 2s; -webkit-animation-iteration-count: 1; } @-webkit-keyframes drop { from { -webkit-transform: translateY(0px); } to { -webkit-transform: translateY(100px); } } </style> <div class="drop_box"> Hello world </div> The