@douyinfe/semi-animation-styled
v2.69.0
Published
semi styled animation
Downloads
12,778
Readme
Stylesheet for animation
- Provides rich transition effects based on
animate.css
(https://github.com/animate-css/animate.css) - It is easy to use. Building rich and vivid front-end pages through adding various atomic animation style to elements
Usage
import '@douyinfe/semi-animation-styled';
import React from 'react';
class App extends React.Component {
render() {
return (
<div className="semi-animated semi-bounce semi-speed-slow semi-loop-infinite">bounce</div>
);
}
}