uni-app/vue 引入 Animate.css (好看且实用的动画库)

代码哈士奇
• 阅读 2406

开发一个程序的时候,我们总想着程序能有各种各样的组件效果 比如弹跳的球等等,像ppt动画那样的效果 整合了Animate.css我们程序的逼格会高很多的,相信我~

Animate.css官网 https://animate.style/

这个网站uni-app云开发教程也是整合了Animate.css

引入

执行 npm install animate.css --save

在main.js中 import 'animate.css';

uni-app/vue 引入 Animate.css (好看且实用的动画库)

如何使用

这里我们写了一个简单的测试

<template>
    <view>
        <view class="test">我来了~</view>
    </view>
</template>
<style>
    .test {
        text-align: center;
        font-size: 40px;
        animation: bounce;
        animation-duration: 2s;
        animation-iteration-count: 10;
    }
</style>

效果如下图 是不是动起来了 哈哈哈哈哈哈哈哈哈~~ uni-app/vue 引入 Animate.css (好看且实用的动画库)

制作一个球

uni-app/vue 引入 Animate.css (好看且实用的动画库) 是不很有意思呢 那么他是怎么实现的呢

一个圆形

使用view组件 基础的样式如下 下面的样式让我们得到了一个球

.funs {
        width: 100px;
        height: 100px;
        border-radius: 100px;
        background-color: #ffffff;
        position: fixed;
        text-align: center;
    }

下落

.ball_one {
        animation: bounceInDown;
        /* referring directly to the animation's @keyframe declaration */
        animation-duration: 2s;
        /* don't forget to set a duration! */
    }

原地跳动

.bail_fone {
        animation: bounce;
        animation-duration: 2s;
        animation-iteration-count: infinite;
    }

首先,需要下落球,落下后开始跳动 那么我们给球下落时间为2s 两秒后切换球的样式 让其开始跳动 那么怎么实现呢? 猜的没错 是 :class

完整代码

<template>
    <view style="background-color: #000000;width: 100%;height: 100vh;">
        <view class="one funs" :class="{ball_one:!isAni,bail_fone:isAni}"></view>
    </view>
</template>

<script>
    export default {
        data() {
            return {
                isAni: false
            }
        },
        onLoad() {
            setTimeout(() => {
                this.isAni = true;
            }, 2600)
        },
        methods: {

        }
    }
</script>

<style>

    .one {
        bottom: 150px;
        left: 150px;
        background-size: cover;
    }

    .funs {
        width: 100px;
        height: 100px;
        border-radius: 100px;
        background-color: #ffffff;
        position: fixed;
        text-align: center;
    }

    .ball_one {
        animation: bounceInDown;
        /* referring directly to the animation's @keyframe declaration */
        animation-duration: 2s;
        /* don't forget to set a duration! */
    }

    .bail_fone {
        animation: bounce;
        animation-duration: 2s;
        animation-iteration-count: infinite;
    }
</style>

实现一个组合框拼接

首先这是静态的时候的样子 uni-app/vue 引入 Animate.css (好看且实用的动画库)

这是动态的样子 uni-app/vue 引入 Animate.css (好看且实用的动画库)

第一个字从上面下落

uni-app/vue 引入 Animate.css (好看且实用的动画库)

样式

.test_one {
        animation: backInDown;
        animation-duration: 2s;
    }

第二个字左侧进入

不再展示 直接上代码

.test_two {
        animation: backInLeft;
        animation-duration: 2s;
    }

第三个字右侧进入

代码如下

.test_three {
        animation: backInRight;
        animation-duration: 2s;
    }

第四个字下到上

代码如下

.test_four {
        animation: backInUp;
        animation-duration: 2s;
    }

拓展

我们可以再加一个自我结束 比如 哈喽,小伙伴们大家好,我是代码哈士奇 效果如下 uni-app/vue 引入 Animate.css (好看且实用的动画库)

怎么实现的呢 很简单 如下

.test_list {
        font-size: 30px;
        margin-top: 40px;
        animation: fadeInDown;
        animation-duration: 3s;
    }

整体代码

<template>
    <view style="position: relative;top: 60px;">
        <view class="f_t test_one">我</view>
        <view class="f_t test_two">是</view>
        <view class="f_t test_three">帅</view>
        <view class="f_t test_four">狗</view>
        <view class="f_t test_list">哈喽,小伙伴们大家好,我是代码哈士奇</view>
    </view>
</template>
<style>
    .f_t{
        text-align: center;
        font-size: 40px;
    }
    .test_one {
        animation: backInDown;
        animation-duration: 2s;
    }

    .test_two {
        animation: backInLeft;
        animation-duration: 2s;
    }

    .test_three {
        animation: backInRight;
        animation-duration: 2s;
    }

    .test_four {
        animation: backInUp;
        animation-duration: 2s;
    }

    .test_list {
        font-size: 30px;
        margin-top: 40px;
        animation: fadeInDown;
        animation-duration: 3s;
    }
</style>

总结

是不是很简单 其实关键就是 animation: xxxx; 这里的xxxx呢 其实就是就是红框中的那些 可以自行尝试哦 还可以在大屏中使用哦 uni-app/vue 引入 Animate.css (好看且实用的动画库)

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Stella981 Stella981
3年前
KVM调整cpu和内存
一.修改kvm虚拟机的配置1、virsheditcentos7找到“memory”和“vcpu”标签,将<namecentos7</name<uuid2220a6d1a36a4fbb8523e078b3dfe795</uuid
Easter79 Easter79
3年前
Twitter的分布式自增ID算法snowflake (Java版)
概述分布式系统中,有一些需要使用全局唯一ID的场景,这种时候为了防止ID冲突可以使用36位的UUID,但是UUID有一些缺点,首先他相对比较长,另外UUID一般是无序的。有些时候我们希望能使用一种简单一些的ID,并且希望ID能够按照时间有序生成。而twitter的snowflake解决了这种需求,最初Twitter把存储系统从MySQL迁移
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这