mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-18 01:50:36 +01:00
31 lines
530 B
CSS
31 lines
530 B
CSS
@keyframes hinge {
|
|
0% {
|
|
transform-origin: top left;
|
|
animation-timing-function: ease-in-out;
|
|
}
|
|
|
|
20%,
|
|
60% {
|
|
transform: rotate3d(0, 0, 1, 80deg);
|
|
transform-origin: top left;
|
|
animation-timing-function: ease-in-out;
|
|
}
|
|
|
|
40%,
|
|
80% {
|
|
transform: rotate3d(0, 0, 1, 60deg);
|
|
transform-origin: top left;
|
|
animation-timing-function: ease-in-out;
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
transform: translate3d(0, 700px, 0);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.hinge {
|
|
animation-duration: 2s;
|
|
animation-name: hinge;
|
|
}
|