美文网首页
css动画库animate

css动画库animate

作者: 回不去的那些时光 | 来源:发表于2018-11-27 17:12 被阅读5次

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;
   }

相关文章

网友评论

      本文标题:css动画库animate

      本文链接:https://www.haomeiwen.com/subject/dgqnqqtx.html