UNPKG

react-scroll-effects

Version:

React component to animate elements on scroll with animate.css

18 lines (15 loc) 248 B
@keyframes rotateIn { 0% { transform-origin: center; transform: rotate3d(0, 0, 1, -200deg); opacity: 0; } 100% { transform-origin: center; transform: none; opacity: 1; } } .rotateIn { animation-name: rotateIn; }