UNPKG

react-scroll-effects

Version:

React component to animate elements on scroll with animate.css

20 lines (15 loc) 284 B
/* 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; }