Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix zoomIn bug in IOS #1666

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions animate.compat.css

Large diffs are not rendered by default.

14 changes: 13 additions & 1 deletion animate.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -3499,6 +3499,12 @@
50% {
opacity: 1;
}

to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes zoomIn {
from {
Expand All @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions animate.min.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions source/zooming_entrances/zoomIn.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
50% {
opacity: 1;
}

to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}

.zoomIn {
Expand Down