anicollection
Version:
AniCollection, The easiest way to find, use and share CSS3 animations.
39 lines (37 loc) • 752 B
CSS
/*
*@name hinge
*@className hinge animated
*@cssCode true
*@editionLink codepen.io
*@author Dan Eden
*@source Animate.css
*@sourceUrl http://daneden.github.io/animate.css/
*@issues https://github.com/daneden/animate.css/issues
*@license MIT
*/
@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
}
100% {
transform: translate3d(0, 700px, 0);
opacity: 0
}
}
.hinge {
animation-name: hinge
}