Summary of the application of transition components in Vue projects

Summary of the application of transition components in Vue projects

​Transtion in vue is an animation transition encapsulation component. A common scenario is that the DOM wrapped with the transition tag contains animation effects. The animation effect transition settings of the transition component are based on the transition property settings of CSS. Here I will introduce the application of transition components in Vue in the project.

Single pop-up application

Notice:

  • The name of the name is the same as the beginning of the following style class.
  • Use v-if to cooperate with the execution of animation effects
<template>
  <div>
  <button v-on:click="show = !show">
    Toggle
  </button>
  <transition name="fade">
    <p v-if="show">hello</p>
  </transition>
  </div>
</template>

<script>
export default {
  data () {
    return {
      show: true
    }
  },
}
</script>

<style scoped lang="less">
.fade-enter-active,
.fade-leave-active {
  transition: all .5s;
}
 .fade-leave-to {
  opacity: 0;
  transform: translateX(20px);
}
.fade-enter{
  opacity: 0;
  transform: translateX(-20px);
}
</style>

Content switching control effect

Notice:

  1. key: can be any value, and the animation switching is controlled by switching the key value. The components can be arbitrary and can remain unchanged. It is up to you whether to change or not. You can use the component tag with is, or directly use v-if.
  2. The component bound to the key needs to be set to absolute positioning, otherwise there will be a lag when switching. You can also set mode="out-in" or mode="in-out" one after the other. It depends on your personal needs.
<template>
  <div>
    <transition name="fade">
      <button class="position" @click="change" :key="status">
        Component</button>
    </transition>
  </div>
</template>

<script>
export default {
  data () {
    return {
      status: '1',
    }
  },
  methods: {
    change () {
      if(this.docState === '1'){
        this.docState = '2'
      }else{
        this.docState = '1'
      }
    }
  }
}
</script>

<style scoped lang="less">
.fade-enter-active,
.fade-leave-active {
  transition: all .5s;
}
 .fade-leave-to {
  opacity: 0;
  transform: translateX(20px);
}
.fade-enter{
  opacity: 0;
  transform: translateX(-20px);
}
.position{
  position: absolute;
}
</style>

Use with animate framework

Notice

  • The value of name must be set to: custom-classes-transition
  • enter-active-class, leave-active-class to control the appearance and disappearance styles
<link href="https://cdn.jsdelivr.net/npm/[email protected]" rel="external nofollow" rel="stylesheet" type="text/css">

<div id="example-3">
  <button @click="show = !show">
    Toggle render
  </button>
  <transition
    name="custom-classes-transition"
    enter-active-class="animated tada"
    leave-active-class="animated bounceOutRight"
  >
    <p v-if="show">hello</p>
  </transition>
</div>

The page is loaded for the first time and the animation is executed

Adding appear to transition

This is the end of this article about the application of transition components in Vue projects. For more relevant content about transition components in Vue, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Vue example code using transition component animation effect
  • Solution to Vue transition failure in child components
  • Detailed explanation of the use of Vue components keep-alive and transition
  • How to implement transition encapsulation components in Vue
  • Use transition and transition-group in vue components to implement transition animation

<<:  The pitfall record of case when judging NULL value in MySQL

>>:  Detailed explanation of the points that need to be paid attention to in HTML standards that comply with W3C standards

Recommend

Ubuntu installation graphics driver and cuda tutorial

Table of contents 1. Uninstall the original drive...

Getting Started with CSS3 Animation in 10 Minutes

Introduction Animation allows you to easily imple...

Two ways to implement text stroke in CSS3 (summary)

question Recently I encountered a requirement to ...

JavaScript implements front-end countdown effect

This article shares the specific code of JavaScri...

Personal opinion: Talk about design

<br />Choose the most practical one to talk ...

A brief introduction to the usage of decimal type in MySQL

The floating-point types supported in MySQL are F...

MySQL login and exit command format

The command format for mysql login is: mysql -h [...

Detailed explanation of data types and schema optimization in MySQL

I'm currently learning about MySQL optimizati...

Native JS implementation of loading progress bar

This article shares a dynamic loading progress ba...

Introduction to user management under Linux system

Table of contents 1. The significance of users an...

How to install tomcat8 in docker

1. Install tomcat8 with docker 1. Find the tomcat...