anicollection
Version:
AniCollection, The easiest way to find, use and share CSS3 animations.
26 lines (24 loc) • 454 B
CSS
/*
*@name rollIn
*@className rollIn animated
*@cssCode true
*@editionLink codepen.io
*@author Nick Pettit
*@source Glide
*@sourceUrl https://github.com/nickpettit/glide
*@issues https://github.com/daneden/animate.css/issues
*@license MIT
*/
@keyframes rollIn {
0% {
opacity: 0;
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
}
100% {
opacity: 1;
transform: none
}
}
.rollIn {
animation-name: rollIn
}