Package Exports
- @douyinfe/semi-animation-styled
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@douyinfe/semi-animation-styled) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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>
);
}
}