animate.css/source/attention_seekers/pulse.css
Daniel Eden d63e022485 More rewrites
Optimising for hardware acceleration, removing duplicate animations (slides), bumping tag
2014-07-06 13:32:34 -07:00

20 lines
284 B
CSS

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@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;
}