move.js
move.js copied to clipboard
Added reflow method
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();