CSS3 Keyframe Animations: End and stay on the last frame

后端 未结 3 1560
鱼传尺愫
鱼传尺愫 2020-12-07 20:30

I\'ve run into some difficulty trying to play a CSS3 keyframe animation and have the relevant element stick at the last frame after the animation has completed. To my unders

3条回答
  •  萌比男神i
    2020-12-07 21:23

    The following code will make the transition stay on the last frame:

    -webkit-timing-function:ease;
    -webkit-iteration-count:1;
    

提交回复
热议问题