mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 09:38:28 +01:00
Fix zoomIn bug in IOS
This commit is contained in:
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
14
animate.css
vendored
|
@ -5,7 +5,7 @@
|
|||
* Version - 4.1.1
|
||||
* Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
|
||||
*
|
||||
* Copyright (c) 2022 Animate.css
|
||||
* Copyright (c) 2023 Animate.css
|
||||
*/
|
||||
:root {
|
||||
--animate-duration: 1s;
|
||||
|
@ -3499,6 +3499,12 @@
|
|||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
-webkit-transform: scale3d(1, 1, 1);
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
}
|
||||
@keyframes zoomIn {
|
||||
from {
|
||||
|
@ -3510,6 +3516,12 @@
|
|||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
-webkit-transform: scale3d(1, 1, 1);
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
}
|
||||
.animate__zoomIn {
|
||||
-webkit-animation-name: zoomIn;
|
||||
|
|
4
animate.min.css
vendored
4
animate.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -7,6 +7,11 @@
|
|||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
}
|
||||
|
||||
.zoomIn {
|
||||
|
|
Loading…
Reference in a new issue