anicollection
Version:
AniCollection, The easiest way to find, use and share CSS3 animations.
27 lines (25 loc) • 447 B
CSS
/*
*@name pulse
*@className pulse 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 pulse {
0% {
transform: scale3d(1, 1, 1)
}
50% {
transform: scale3d(1.05, 1.05, 1.05)
}
100% {
transform: scale3d(1, 1, 1)
}
}
.pulse {
animation-name: pulse
}