Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
// Creating Google’s “Material Design” in SCSS | |
// (specifically Material Shadow, uses compass) | |
// see: http://www.google.com/design/spec/layout/layout-principles.html#layout-principles-paper-craft | |
// Demo: http://codepen.io/stoikerty/full/Glwxi/ | |
// Animating Box-Shadow is EXPENSIVE: | |
// http://www.html5rocks.com/en/tutorials/speed/high-performance-animations/#toc- | |
// Moving between z-index-depths is done via opacity & multiple |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ | |
// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating | |
// requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel | |
// MIT license | |
(function() { | |
var lastTime = 0; | |
var vendors = ['ms', 'moz', 'webkit', 'o']; |