美文网首页
组件当中应用动画

组件当中应用动画

作者: 最爱喝龙井 | 来源:发表于2019-08-14 15:22 被阅读0次

在组件当中应用动画很简单,直接拿一个transition标签将组件包裹起来,再给订一些样式即可,定义组件动画时,transition身上有个mode属性,来决定动画执行的顺序问题,有out-in和in-out两个属性值

例:

<!DOCTYPE html>
<html lang="zh-CN">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <script src="js/vue.js"></script>
    <style>
        .v-enter,
        .v-leave-to {
            opacity: 0;
            transform: translateX(150px)
        }
        .v-enter-active,
        .v-leave-active {
            transition: all .6s ease;
        }
    </style>
</head>

<body>
    <div id="app">
        <button @click="componentId='mycom1'">按钮</button>
        <button @click="componentId='mycom2'">按钮</button>
        <button @click="componentId='mycom3'">按钮</button>
        <!-- component标签相当于是一个占位符 -->
        <transition mode='out-in'>
                <component :is="componentId"></component>
        </transition>
    </div>
    <template id="tem1">
        <h1>hello world1</h1>
    </template>
    <template id="tem2">
            <h1>hello world2</h1>
        </template>

        <template id="tem3">
        <h1>hello world3</h1>
    </template>
    <script>
        Vue.component('mycom1', {
            template:'#tem1'
        })
        Vue.component('mycom2', {
            template:'#tem2'
        })
        Vue.component('mycom3', {
            template:'#tem3'
        })
        var vm = new Vue({
            el: '#app',
            data: {
                componentId: 'mycom1'
            },
            methods: {}
        });
    </script>
</body>

</html>

相关文章

  • 组件当中应用动画

    在组件当中应用动画很简单,直接拿一个transition标签将组件包裹起来,再给订一些样式即可,定义组件动画时,t...

  • Flutter轮播图

    前端开发当中最有意思的就是实现动画特效,Flutter提供的各种动画组件可以方便实现各种动画效果。Flutter中...

  • 爆炸销毁动画组件Explosions

    爆炸销毁动画组件Explosions 爆炸销毁动画通常应用于界面元素的移除。使用该动画效果可以将移除操作表现的更为...

  • Flutter-内置的动画组件

    在Flutter的动画开发当中,Flutter SDK也有提供一些内置的动画组件给我们使用。这篇博客就来分享一下有...

  • Flutter-浅谈动画插值器

    在日常的开发当中,我们会给一些组件添加动画来达到更好的视觉交互体验。动画插值器是动画实现的重要部分,这篇博客就来分...

  • Android MVVM使用文档

    项目依赖关系 关联关系 1、应用层APP也就是项目当中的宿主2、组件层则是项目当中的业务组件3、基础层是一些公共的...

  • 关于Scroller的使用以及自己实现一个侧滑菜单

    在Android应用当中,滑动基本是每个应用的标配。对于滑动,我们主要可以通过Scroller、属性动画或者动态改...

  • Flutter-AnimatedBuilder简单使用

    在Flutter开发当中,如果我们不需要实现单独的继承AnimatedWidget自定义动画组件,我们可以通过An...

  • Vue的简单todo

    这是一个还算好看的todo网站链接 有组件和动画的应用,适合新手练手。

  • 2019-05-10

    vue 组件按需引用,vue-router懒加载,vue打包优化,加载动画 当打包构建应用时,Javascript...

网友评论

      本文标题:组件当中应用动画

      本文链接:https://www.haomeiwen.com/subject/wuggjctx.html