Skip to content

Instantly share code, notes, and snippets.

@pairing
Created April 28, 2015 19:19
Show Gist options
  • Save pairing/c545f26ad79a3e4a50db to your computer and use it in GitHub Desktop.
Save pairing/c545f26ad79a3e4a50db to your computer and use it in GitHub Desktop.
Shatter
$('div').each(function() {
var scale = Math.floor((Math.random() * 50) + 1);
$(this).css('transition', 'all 0.' + scale + 's');
});
$(document).on('keyup', function(e) {
$('div').each(function() {
var scale = Math.floor((Math.random() * 50) + 1);
$(this).css('transform', 'rotate(' + scale + 'deg)');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment