public marks

PUBLIC MARKS from srcmax with tags css & animation

2015

Making things move

Making things move When you are a front-end developer

Aerotwist - FLIP Your Animations

I’ve come to love FLIP as a way of thinking about animations, because it’s a good match of JavaScript and CSS. Calculate in JavaScript, but let CSS handle the animations for you. You don’t have to use CSS to do the animations, though, you could just as easily use the Web Animations API or JavaScript itself, whatever’s easiest. The main point is that you’re reducing the per-frame complexity and cost (which normally means transform and opacity) to try and give the user the best possible experience.

2014

Velocity.js

by 3 others
Velocity is a jQuery plugin that re-implements $.animate() to produce significantly greater performance (making Velocity also faster than CSS animation libraries) while including new features to improve animation workflow.

2012

jQuery Animations with automatic CSS3 transitions when possible

by 1 other
Extend $.animate() to detect CSS transitions for Webkit, Mozilla and Opera and convert animations automatically.