|
@@ -0,0 +1,34 @@
|
|
|
+@keyframes slideUp {
|
|
|
+ 0% {
|
|
|
+ transform: translateY(60px);
|
|
|
+ opacity: 0;
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translateY(0);
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.img {
|
|
|
+ opacity: 0;
|
|
|
+ animation-name: slideUp;
|
|
|
+ animation-duration: 0.5s;
|
|
|
+ animation-delay: 0.2s;
|
|
|
+ animation-fill-mode: forwards;
|
|
|
+}
|
|
|
+
|
|
|
+.tips {
|
|
|
+ opacity: 0;
|
|
|
+ animation-name: slideUp;
|
|
|
+ animation-duration: 0.5s;
|
|
|
+ animation-delay: 0.4s;
|
|
|
+ animation-fill-mode: forwards;
|
|
|
+}
|
|
|
+
|
|
|
+.btn {
|
|
|
+ opacity: 0;
|
|
|
+ animation-name: slideUp;
|
|
|
+ animation-duration: 0.5s;
|
|
|
+ animation-delay: 0.6s;
|
|
|
+ animation-fill-mode: forwards;
|
|
|
+}
|