当前位置:  首页>> 技术小册>> uni-app零基础入门

下载代码

animate.css官网地址:
https://animate.style/

复制css代码,添加到我们的项目
https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css

/static/animatecss/animate.css

引入

App.vue中引入:

  1. /* 引入css动画库 */
  2. @import './static/animatecss/animate.css';

使用

index.vue:

  1. <template>
  2. <view>
  3. <navigator url="../list/list">
  4. <view>跳转到测试页</view>
  5. </navigator>
  6. </view>
  7. </template>

在这个页面我们添加一个跳转链接
新建一个页面pages/list/list.vue
list.vue

  1. <template>
  2. <view class="animate__animated animate__bounce">
  3. 111111
  4. </view>
  5. </template>

从首页点击链接跳到list页,查看文字的跳动效果。

更多animate.css的使用查看官方文档:
https://animate.style/


该分类下的相关小册推荐: