Skip to content

Instantly share code, notes, and snippets.

@paulirish
Created June 4, 2010 22:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save paulirish/426012 to your computer and use it in GitHub Desktop.
Save paulirish/426012 to your computer and use it in GitHub Desktop.
// here's a rewrite of the amelie.js to avoid global variables and eval via setTimeout(string..
// http://icant.co.uk/ie6-amelie/
if (document.all && !window.XMLHttpRequest){(function(){
var x = 1,
when = 0,
str, dir, fil;
function amelie() {
if (x == 2) {
x = 0;
}
if (x == 0) {
str = 0;
dir = 0;
when = Math.floor(Math.random() * 10*1000) + 2000;
setTimeout(amelie, when);
} else {
str = Math.floor(Math.random() * 2) + 2;
dir = Math.floor(Math.random() * 360);
setTimeout(amelie, 500);
}
var fil = "progid:DXImageTransform.Microsoft.MotionBlur(strength=" + str + ",direction=" + dir + ",enabled='true')";
document.body.style.filter = fil;
x++;
}
setTimeout(amelie, 1000);
})()}
@phiggins42
Copy link

@math - you are totally right. I thought the gist has changed since your initial comment and the 0's were in the var declaration for str && dir ... /me stands corrected.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment