Created
May 24, 2020 16:57
-
-
Save xeladotbe/0f41c69266ca56a8676545d9d48247d6 to your computer and use it in GitHub Desktop.
zoomOut
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@keyframes zoomOut { | |
from { | |
opacity: 1; | |
} | |
50% { | |
opacity: 0; | |
-webkit-transform: scale3d(0.3, 0.3, 0.3); | |
transform: scale3d(0.3, 0.3, 0.3); | |
} | |
to { | |
opacity: 0; | |
} | |
} |
Author
xeladotbe
commented
May 24, 2020
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment