visionmedia / move.js

CSS3 backed JavaScript animation framework
http://visionmedia.github.com/move.js/
4.72k stars 686 forks source link

Added reflow method #82

Open jasonlav opened 6 years ago

jasonlav commented 6 years ago

Added reflow method to simplify task of modifying style properties and immediately animating with those changes.

el.style.opacity = 0;

Move(el)
.reflow() //Reflows DOM element so animation will occur
.set('opacity', `)
.duration('1s')
.end();