zoukankan      html  css  js  c++  java
  • Vue中的Js动画与Velocity.js 的结合

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Vue中的Js动画与Velocity.js的结合</title>
        <script src="./vue.js"></script>
        <script src="./velocity.min.js"></script>
    </head>
    <body>
    <div id="root">
        <transition name="fade"
                    @before-enter="handleBeforeEnter"
                    @enter="handleEnter"
                    @after-enter="handleAfterEnter">
            <div v-show="show">hello world</div>
        </transition>
        <button @click="handleClick">toggle</button>
    </div>
    <script>
    
        var vm = new Vue({
            el: '#root',
            data: {
                show: true
            },
            methods: {
            handleClick: function () {
                    this.show = !this.show
                },
                handleBeforeEnter: function (el) {
                    el.style.opacity =0;
                },
                handleEnter: function (el, done) {
                    Velocity(el,{opacity:1},{duration:1000,complete:done})
                },
                handleAfterEnter: function (el) {
                    console.log('动画结束')
                }
            }
        })
    </script>
    </body>
    </html>
    
    <!--
    入场动画钩子函数:@before-enter @enter @after-enter
    出场动画钩子函数:@before-leave @leave @after-leave
    velocity.min.js是js动画库
    -->
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Vue中的Js动画与Velocity.js的结合</title>
        <script src="./vue.js"></script>
        <script src="./velocity.min.js"></script>
    </head>
    <body>
    <div id="root">
        <transition name="fade"
                    @before-enter="handleBeforeEnter"
                    @enter="handleEnter"
                    @after-enter="handleAfterEnter">
            <div v-show="show">hello world</div>
        </transition>
        <button @click="handleClick">toggle</button>
    </div>
    <script>
    
        var vm = new Vue({
            el: '#root',
            data: {
                show: true
            },
            methods: {
            handleClick: function () {
                    this.show = !this.show
                },
                handleBeforeEnter: function (el) {
                    el.style.opacity =0;
                },
                handleEnter: function (el, done) {
                    Velocity(el,{opacity:1},{duration:1000,complete:done})
                },
                handleAfterEnter: function (el) {
                    console.log('动画结束')
                }
            }
        })
    </script>
    </body>
    </html>
    
    <!--
    入场动画钩子函数:@before-enter @enter @after-enter
    出场动画钩子函数:@before-leave @leave @after-leave
    velocity.min.js是js动画库
    -->
  • 相关阅读:
    matlab cell
    matlab linux 快捷键设置——有问题还是要解决
    latex 小结
    TOJ 1258 Very Simple Counting
    TOJ 2888 Pearls
    HDU 1248 寒冰王座
    TOJ 3486 Divisibility
    TOJ 3635 过山车
    TOJ 1840 Jack Straws
    HDU 4460 Friend Chains
  • 原文地址:https://www.cnblogs.com/xuyxbiubiu/p/10020504.html
Copyright © 2011-2022 走看看