Webkit support for slide in frame

This commit is contained in:
Jackson Harper 2024-03-13 20:19:13 +08:00
parent e9b15ebb06
commit 05fe1cb87c

View file

@ -625,6 +625,9 @@
animation-name: fadeInUp;
animation-duration: 0.5s;
animation-fill-mode: both;
-webkit-animation-name: fadeInUp;
-webkit-animation-duration: 0.5s;
-webkit-animation-fill-mode: both;
overflow: hidden;
box-shadow: 0px 4px 4px rgba(33, 33, 33, 0.1) !important;
}
@ -640,4 +643,17 @@
-webkit-transform: none;
transform: none;
}
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}