css动画库animate
程序员文章站
2022-03-16 20:58:42
...
animate是一套非常好用的css动画库
官方网站地址 https://daneden.github.io/animate.css/
使用案例
html
/*
animated bounce delay-2s infinite fast 这些都是animate css库中的样式
animate中有很多好玩的样式,这里就不列举了,去官网看吧
*/
<div class="box animated bounce delay-2s infinite fast"></div>
css
.box {
margin: 50px auto;
width:100px;
height: 100px;
background-color: #00b3f1;
}