Fix zoomIn bug in IOS

This commit is contained in:
hyming 2023-03-27 17:39:35 +08:00
parent 3235f27325
commit cbef9e4b6e
4 changed files with 22 additions and 5 deletions

File diff suppressed because one or more lines are too long

14
animate.css vendored
View file

@ -5,7 +5,7 @@
* Version - 4.1.1 * Version - 4.1.1
* Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev * Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
* *
* Copyright (c) 2022 Animate.css * Copyright (c) 2023 Animate.css
*/ */
:root { :root {
--animate-duration: 1s; --animate-duration: 1s;
@ -3499,6 +3499,12 @@
50% { 50% {
opacity: 1; opacity: 1;
} }
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
} }
@keyframes zoomIn { @keyframes zoomIn {
from { from {
@ -3510,6 +3516,12 @@
50% { 50% {
opacity: 1; opacity: 1;
} }
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
} }
.animate__zoomIn { .animate__zoomIn {
-webkit-animation-name: zoomIn; -webkit-animation-name: zoomIn;

4
animate.min.css vendored

File diff suppressed because one or more lines are too long

View file

@ -7,6 +7,11 @@
50% { 50% {
opacity: 1; opacity: 1;
} }
to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
} }
.zoomIn { .zoomIn {