css-transition

0.0.3 • Public • Published

css-transition

Animate between DOM style changes using css transitions.

Also supports a few extra transitions not currently available in vanilla css such as position (static <-> absolute/fixed) and auto values (e.g. height: auto).

Install

$ npm install css-transition

Example

<div id='element' style='padding:20px; background: silver; border: 1px solid gray'>
  Element with content
</div>
var cssTransition = require('css-transition')
var element = document.getElementById('element')
 
cssTransition(element, {
  height: '200px',
  width: '600px',
  backgroundColor: 'red'
}, 400, function(){
  console.log('animation complete')
})

Run npm run example and navigate to http://localhost:9966 to see it in action.

Readme

Keywords

Package Sidebar

Install

npm i css-transition

Weekly Downloads

131

Version

0.0.3

License

MIT

Last publish

Collaborators

  • mmckegg