1
0
semi-bot ebf8a78f51 v2.4.0-beta.0 3 жил өмнө
..
_story f76bd5879d feat: init 4 жил өмнө
scripts f76bd5879d feat: init 4 жил өмнө
src 626c4b9f9e Feat/support next (#245) 3 жил өмнө
README.md 3867f9a84f Test update (#114) 4 жил өмнө
getBabelConfig.js 626c4b9f9e Feat/support next (#245) 3 жил өмнө
gulpfile.js 626c4b9f9e Feat/support next (#245) 3 жил өмнө
index.ts f76bd5879d feat: init 4 жил өмнө
package.json ebf8a78f51 v2.4.0-beta.0 3 жил өмнө
tsconfig.json f76bd5879d feat: init 4 жил өмнө

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