Created
June 22, 2021 05:55
-
-
Save Hansanghyeon/64165f52ab022a4c69191fa191defe58 to your computer and use it in GitHub Desktop.
[ui] accordion css
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
// base | |
.target { | |
max-height: 0; | |
} | |
@keyframes accordionIn { | |
0% { | |
opacity: 0; | |
transform: scale(0.9) rotateX(-60deg); | |
transform-origin: 50% 0; | |
max-height: none; | |
} | |
100% { | |
opacity: 1; | |
transform: scale(1); | |
max-height: none; | |
} | |
} | |
@keyframes accordionOut { | |
0% { | |
opacity: 1; | |
transform: scale(1); | |
} | |
100% { | |
opacity: 0; | |
transform: scale(0.9) rotateX(-60deg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment