Canalblog
Suivre ce blog Administration + Créer mon blog

farah photo 2010

9 février 2007

// Visit our site at http://www.star28.com/ for

// Visit our site at http://www.star28.com/ for more code hexa = new Array(16); function degrade(sr, sg, sb, er, eg, eb, pas) { for(var i = 0; i < 10; i++) hexa[i] = i; hexa[10]="a"; hexa[11]="b"; hexa[12]="c"; hexa[13]="d"; hexa[14]="e"; hexa[15]="f"; for(var i = 0; i <= pas; i++) { setbgColor( Math.floor(sr * ((pas-i)/pas) + er * (i/pas)), Math.floor(sg * ((pas-i)/pas) + eg * (i/pas)), Math.floor(sb * ((pas-i)/pas) + eb * (i/pas))); } } function hex(i) { if (i < 0) return "00"; else if (i > 255) return "ff"; else return "" + hexa[Math.floor(i/16)] + hexa[i%16]; } function setbgColor(r, g, b) { var hr = hex(r), hg = hex(g), hb = hex(b); document.bgColor = "#"+hr+hg+hb; }
Publicité
Publicité
9 février 2007

farah photo

Publicité
Publicité
Publicité
Publicité