no message
Former-commit-id: b27fb5741f95f7b353f1559dde27fa971efcbb46 Former-commit-id: 2f9375feb0a9c8b4e12eb502d275014a100d5854 Former-commit-id: 5425696bce2a7ed045b5d017e6fa6b727670e812
This commit is contained in:
15
src/assets/style/animate/vue-transition.scss
Normal file
15
src/assets/style/animate/vue-transition.scss
Normal file
@@ -0,0 +1,15 @@
|
||||
// 过渡动画
|
||||
.fade-enter-active {
|
||||
transition: all .5s;
|
||||
}
|
||||
.fade-leave-active {
|
||||
transition: all .5s;
|
||||
}
|
||||
.fade-enter {
|
||||
opacity: 0;
|
||||
transform: translateX(-30px);
|
||||
}
|
||||
.fade-leave-to {
|
||||
opacity: 0;
|
||||
transform: translateX(30px);
|
||||
}
|
||||
Reference in New Issue
Block a user