Animate.css动画

 参考地址: http://www.animate.net.cn/

 官方地址: https://animate.style/

                 https://github.com/animate-css/animate.css

只需两步

链接css文件 <link rel="stylesheet" href="style/animate.min.css">
添加对应到类名 <h1 class="animated hinge">服务</h1>

其他的补充说明

animate.css 的默认设置也许有些时候并不是我们想要的,所以你可以重新设置,比如:

h1 {
     animation-duration: 3s;  动画持续时间
     animation-delay: 0.2s;   动画延迟时间
     animation-iteration-count: 2;   执行次数
}

猜你喜欢

转载自www.cnblogs.com/life-fxl/p/13377982.html