Skip to content

Instantly share code, notes, and snippets.

@cianclarke
Created December 20, 2013 19:56
Show Gist options
  • Select an option

  • Save cianclarke/8060431 to your computer and use it in GitHub Desktop.

Select an option

Save cianclarke/8060431 to your computer and use it in GitHub Desktop.
Let It Snow
var letItSnow = function(){
return setInterval(function(){
var snow = document.createElement('div');
snow.innerHTML = '*';
snow.style.cssText = 'position:absolute; color: #ddd; font-size: 22px; top: ' + Math.random()*window.innerHeight + 'px; right: ' + Math.random()*window.innerWidth + 'px';
document.body.appendChild(snow)
}, 100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment