JSPM

@douyinfe/semi-animation-styled

2.1.0-next.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3542
  • Score
    100M100P100Q133518F
  • License MIT

semi styled animation

Package Exports

  • @douyinfe/semi-animation-styled
  • @douyinfe/semi-animation-styled/lib/cjs/index.js
  • @douyinfe/semi-animation-styled/lib/es/index.js

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>
        );
    }
}