initial commit
This commit is contained in:
@@ -0,0 +1 @@
|
||||
@import url("fadeAnimation.css");
|
||||
@@ -0,0 +1,31 @@
|
||||
.fade-enter {}
|
||||
|
||||
.fade-enter-active {
|
||||
animation: fade-out 1s ease-out;
|
||||
}
|
||||
|
||||
.fade-leave {}
|
||||
|
||||
.fade-leave-active {
|
||||
animation: fade-out 1s ease-out;
|
||||
}
|
||||
|
||||
@keyframes fade-in {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fade-out {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
@import url("defaultAnimations.css");
|
||||
Reference in New Issue
Block a user