In-depth understanding of Vue transition and animation

In-depth understanding of Vue transition and animation

1. When inserting, updating, or removing DOM elements, add style class names to the elements when appropriate

2. The element has an entry process: Enter and a leaving process: Leave.

Both processes have an initial state () and a terminal state (-to) and a transition effect (activate) between the two states.

3. Writing

Animation : Write v-enter-active(替換come這個名字)和v-leave-active(替換go)(這兩個是vue的工作) and動畫atguigu(這個是css3的效果) . Just wrap the animation elements with <transition>. appear is to execute v-enter-activate once the element is loaded

Transition : The starting point and end point here are the role of Vue.

or

<style scoped>
/* .todo-enter-active{
    animation: myAnamite 1s;
}
.todo-leave-active{
    animation: myAnamite 1s reverse;
}
@keyframes myAnamite {
    from{
        transform: translateX(-100%);
    }
    to{
        transform: translateX(0);
    }
} */
.todo-enter,.todo-leave-to{
    transform: translateX(-100%);
}
.todo-leave,.todo-enter-to{
    transform: translateX(0);
}
.todo-enter-active, .todo-leave-active {
    transition: 1s linear;
}
</style>

Multiple elements overload:

Third-party animation library: anamite.css庫

Install:

Import: import 'animate.css' in script

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of Vue transition effects and animation transition usage examples
  • Detailed explanation of the application of transition animation effects in Vue
  • Vue learning notes advanced chapter single element transition
  • Vue handwriting loading animation project
  • Vue implements carousel animation

<<:  Using CSS3 to achieve transition and animation effects

>>:  LinkedIn revamps to simplify website browsing

Recommend

In-depth explanation of binlog in MySQL 8.0

1 Introduction Binary log records SQL statements ...

Navicat for MySQL 11 Registration Code\Activation Code Summary

Recommended reading: Navicat12.1 series cracking ...

Share 8 CSS tools to improve web design

When one needs to edit or modify the website desi...

Practical method of upgrading PHP to 5.6 in Linux

1: Check the PHP version after entering the termi...

Solution to nginx-ingress-controller log persistence solution

Recently I saw an article on a public account tha...

6 Uncommon HTML Tags

First: <abbr> or <acronym> These two s...

Implementation of MySQL master-slave status check

1. Check the synchronization status of A and B da...

Detailed explanation of this pointing problem in JavaScript function

this keyword Which object calls the function, and...

mysql add, delete, modify and query basic statements

grammar Here is the generic SQL syntax for INSERT...

Docker realizes the connection with the same IP network segment

Recently, I solved the problem of Docker and the ...

JavaScript Timer Details

Table of contents 1. Brief Introduction 2. setInt...

The scroll bar position is retained when scrolling the vant list component

The scroll bar position is retained when scrollin...

MySQL scheduled full database backup

Table of contents 1. MySQL data backup 1.1, mysql...

Docker commands are implemented so that ordinary users can execute them

After installing docker, there will usually be a ...