move.js icon indicating copy to clipboard operation
move.js copied to clipboard

Added reflow method

Open jasonlav opened this issue 8 years ago • 0 comments

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

jasonlav avatar Oct 30 '17 15:10 jasonlav