animejs 元素动画

概述

vue项目使用元素动画

安装

npm install animejs --save

参考

引用及使用

import anime from 'animejs/lib/anime.js';

文档

https://www.animejs.cn/documentation/#gridAxisStaggering

完整demo

<template>
<div class="anime">
    <div class="wCen">
        <div class="blue">
            <div class="ball"></div>
        </div>
        <div class="green">
            <div class="ball"></div>
        </div>
    </div>
</div>
</template>

<script>
import anime from 'animejs/lib/anime.js';
export default {
    data() {
        return {

        }
    },
    mounted() {
        var myAnimation = anime({
            targets: ['.blue', '.green'],
            translateX: '300px',
            rotate: 360,
            borderRadius: 100,
            duration: 2000*2,
            // loop: true,
            easing:'linear'
        });
    }
}
</script>

<style lang="scss" scoped>
.anime {
    padding:100px 0;
    .blue,.green{
        width:100px;
        height:100px;
        border-radius: 100px;
        padding:10px 0 0 10px;
        .ball{
            width:30px;
            height:30px;
            border-radius:20px;
            background-color: #fff;
        }
    }
    .blue{
        background-color: blue;
    }
    .green{
        background-color: limegreen;
    }
}
</style>


Logo

前往低代码交流专区

更多推荐