• 使用cdn引入
 <link href="https://unpkg.com/animate.css@3.5.2/animate.min.css" rel="stylesheet">
  • 如果是vue项目,就npm install animate.css --save ,然后在main.jsimport animated from 'animate.css' Vue.use(animated)
  • html中使用: 必须要写infinate,不然动画不生效
<body>
  <div class="animated bounce infinite"></div>
</body>
  • 给div设置样式,不然页面看不见东西
<style>
    div {
      width: 100px;
      height: 100px;
      background-color: red;
    }
</style>
Logo

分享最新的 NVIDIA AI Software 资源以及活动/会议信息,精选收录AI相关技术内容,欢迎大家加入社区并参与讨论。

更多推荐