码迷,mamicode.com
首页 > 其他好文 > 详细

VUE系列之动画效果

时间:2019-12-26 16:04:29      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:lse   配置路由   port   export   image   页面   增加   点击   http   

一、新建VUE页面(VUE动画效果页)

技术图片

二、配置路由
技术图片

三、主页增加链接
技术图片

代码:

<template>
  <div>
        <div class="title" >
          <transition name="fade">
            <p v-if="show">vue 动画</p>
          </transition>
         </div>

         <button v-on:click="change()">点击效果</button>
  </div>
</template>

<script>
export default {
    name: ‘Eoo‘,
    data () {
      return {
        show:false
      }
    },
    methods:{
      change:function(){
          this.show = !this.show
      }
    }
  }
</script>

<style>
  .title{
    height: 50px;
    width: 100px;
    line-height: 50px;
    border: 1px solid #EAEAEA;
    text-align: center;
    margin: 10px;
  }
  .fade-enter-active, .fade-leave-active {
    transition: opacity .5s;
  }
  .fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
    opacity: 0;
  }
</style>

VUE系列之动画效果

标签:lse   配置路由   port   export   image   页面   增加   点击   http   

原文地址:https://blog.51cto.com/14388114/2461919

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!