Vue中动画与velocity.js

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Vue中动画与velocity.js</title>
    <script src="./vue.js"></script>
    <script src="./velocity.min.js"></script>
</head>
<body>
    <div id="app">
        <!-- 注意没有@after-leave -->
        <transition 
            name="myfade"
            @before-enter="handleBeforeEnter"
            @enter="handleEnter"
            @after-enter="handleAfterEnter"
            @before-leave="handleBeforeLeave"
            @leave="handleLeave"
        >
            <div v-show="show">Vue中动画与velocity.js</div>
        </transition>
        <button @click="handleBtnClick">切换</button>
    </div>

    <script>
        var vm = new Vue({
            el: "#app",
            data: {
                show: true
            },
            methods: {
                handleBtnClick: function() {
                    this.show = !this.show;
                },
                handleBeforeEnter: function(el) {
                    // el指的是动画<transition>包裹的标签
                    // 自己写的js动画
                    // el.style.color = "red";

                    el.style.opacity = 0;
                },
                handleEnter: function(el, done) {
                    // 自己写的js动画
                    // setTimeout(()=> {
                    //     el.style.color = "green"
                    // }, 3000)
                    // setTimeout(()=> {
                    //     done()
                    // },5000)
                    
                    // 使用Velocity.js
                    Velocity(el, {
                        opacity: 1
                    }, {
                        duration: 1000,
                        complete: done
                    })
                },
                handleAfterEnter: function(el) {
                    // 自己写的js动画
                    el.style.color = "black"
                    console.log("Enter Finish!")
                },
                handleBeforeLeave: function(el) {
                    // 自己写的js动画
                    // el.style.color = "yellow"
                    el.style.opacity = 1;
                    el.style.color = "green"
                },
                handleLeave: function(el, done) {
                    // 自己写的js动画
                    // setTimeout(()=> {
                    //     el.style.color = "pink"
                    // }, 3000)
                    // setTimeout(()=> {
                    //     done()
                    // },5000)

                    // 使用Velocity.js
                    Velocity(el, {
                        opacity: 0
                    }, {
                        duration: 3000,
                        complete: done
                    })
                }
            }
        })
    </script>
</body>
</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值