Skip to content

Instantly share code, notes, and snippets.

@Hansanghyeon
Created June 22, 2021 05:55
Show Gist options
  • Save Hansanghyeon/64165f52ab022a4c69191fa191defe58 to your computer and use it in GitHub Desktop.
Save Hansanghyeon/64165f52ab022a4c69191fa191defe58 to your computer and use it in GitHub Desktop.
[ui] accordion css
// 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