Skip to content

Instantly share code, notes, and snippets.

@madbence
Created April 15, 2013 16:26
Show Gist options
  • Save madbence/5389335 to your computer and use it in GitHub Desktop.
Save madbence/5389335 to your computer and use it in GitHub Desktop.
var i = 0;
setInterval(function() {
i = Math.random() * 30 - 15;
for (var j = 0, l = document.getElementsByTagName('*'); j < l.length; j++) {
l[j].style.webkitTransform = 'rotate(' + (i / 50) + 'deg) translate(' + Math.sin(i / 6) * 10 + 'px,' + Math.sin(i / 6) * 10 + ')';
}
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment