欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CSS之页面元素飞入效果

程序员文章站 2022-06-17 09:22:33
...
效果预览:

- https://www.runoob.com/try/try.php?filename=trycss3_animation-fill-mode

- https://www.runoob.com/cssref/css3-pr-animation-fill-mode.html


.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}