vue 动画框架Animate.css @keyframes

最后都变了- 提交于 2019-12-06 01:14:44
<script src="vue.js"></script>
<link rel="stylesheet" href="animate.css">
<style>
    /*@keyframes bounce-in {*/
    /*    0% {*/
    /*        transform:scale(0);*/
    /*    }*/
    /*    50% {*/
    /*        transform:scale(1.5);*/
    /*    }*/
    /*    100% {*/
    /*        transform:scale(1);*/
    /*    }*/
    /*}*/
    /*.active {*/
    /*    transform-origin:left center;*/
    /*    animation: bounce-in 1s;*/
    /*}*/
    /*.leave {*/
    /*    transform-origin:left center;*/
    /*    animation: bounce-in 1s reverse;*/
    /*}*/
</style>
<body>
    <section class="app">
        <transition name="fade"
                    enter-active-class="animated flip"
                    leave-active-class="animated hinge">
            <article v-if="show">Selecte</article>
        </transition>
        <button @click="handle">Option</button>
    </section>
<script>
    var vm = new Vue({
        el:".app",
        data: {
            show:true
        },
        methods: {
            handle:function () {
                this.show = !this.show
            }
        }
    })

</script>
</body>

上面是动画效果

Vue同时使用过渡和动画效果

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!