semi-bot 5b995a1afa v2.20.0-beta.1 il y a 3 ans
..
_story f76bd5879d feat: init il y a 4 ans
scripts f76bd5879d feat: init il y a 4 ans
src 626c4b9f9e Feat/support next (#245) il y a 3 ans
README.md 3867f9a84f Test update (#114) il y a 4 ans
getBabelConfig.js 1b9c2f04c2 chore: replace divide operator to math.div (#1130) il y a 3 ans
gulpfile.js 626c4b9f9e Feat/support next (#245) il y a 3 ans
index.ts f76bd5879d feat: init il y a 4 ans
package.json 5b995a1afa v2.20.0-beta.1 il y a 3 ans
tsconfig.json f76bd5879d feat: init il y a 4 ans

README.md

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