UNPKG

anicollection

Version:

AniCollection, The easiest way to find, use and share CSS3 animations.

35 lines (33 loc) 790 B
/* *@name bounce *@className bounce 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 bounce { 0%, 100%, 20%, 53%, 80% { transition-timing-function: cubic-bezier(0.215, .61, .355, 1); transform: translate3d(0, 0, 0) } 40%, 43% { transition-timing-function: cubic-bezier(0.755, .050, .855, .060); transform: translate3d(0, -30px, 0) } 70% { transition-timing-function: cubic-bezier(0.755, .050, .855, .060); transform: translate3d(0, -15px, 0) } 90% { transform: translate3d(0, -4px, 0) } } .bounce { animation-name: bounce; transform-origin: center bottom }