19 lines
396 B
CSS
19 lines
396 B
CSS
|
/*
|
||
|
* @Author: Kane
|
||
|
* @Date: 2022-11-22 17:12:01
|
||
|
* @LastEditors: Kane
|
||
|
* @LastEditTime: 2022-11-22 17:24:53
|
||
|
* @FilePath: \vue-learning\入门\动画\css\main.css
|
||
|
* @Description: 列表动画的css文件
|
||
|
*
|
||
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||
|
*/
|
||
|
.list-enter-active,
|
||
|
.list-leave-active {
|
||
|
transition: all 1s ease;
|
||
|
}
|
||
|
.list-enter-from,
|
||
|
.list-leave-to {
|
||
|
opacity: 0;
|
||
|
}
|