Background Color Effect

Posted by Unknown Rabu, 30 Desember 2009 6 komentar

20 Million Miles to Earth (Colorized Version)This session I want help you to make Background Color Effect in your blog.
Please following the instructions :
1. Open Blogger Draft
2. Click Layout --> Edit HTML and "Download Full Template", save to computer your template to be on guard if this experiment fails
3. Encode first script bellow to Centricle.Com, than copy-paste to your template.
4. Placement script before script:  </head>
<script language="JavaScript">
<!--
//you can assign the initial color of the background here
r=255;
g=255;
b=255;
flag=0;
t=new Array;
o=new Array;
d=new Array;


function hex(a,c)
{
t[a]=Math.floor(c/16)
o[a]=c%16
switch (t[a])
{
case 10:
t[a]='A';
break;
case 11:
t[a]='B';
break;
case 12:
t[a]='C';
break;
case 13:
t[a]='D';
break;
case 14:
t[a]='E';
break;
case 15:
t[a]='F';
break;
default:
break;
}
switch (o[a])
{
case 10:
o[a]='A';
break;
case 11:
o[a]='B';
break;
case 12:
o[a]='C';
break;
case 13:
o[a]='D';
break;
case 14:
o[a]='E';
break;
case 15:
o[a]='F';
break;
default:
break;
}
}


function ran(a,c)
{
if ((Math.random()>2/3||c==0)&&c<255)
{
c++
d[a]=2;
}
else
{
if ((Math.random()<=1/2||c==255)&&c>0)
{
c--
d[a]=1;
}
else d[a]=0;
}
return c
}
function do_it(a,c)
{
if ((d[a]==2&&c<255)||c==0)
{
c++
d[a]=2
}
else
if ((d[a]==1&&c>0)||c==255)
{
c--;
d[a]=1;
}
if (a==3)
{
if (d[1]==0&&d[2]==0&&d[3]==0)
flag=1
}
return c
}
function disco()
{
if (flag==0)
{
r=ran(1, r);
g=ran(2, g);
b=ran(3, b);
hex(1,r)
hex(2,g)
hex(3,b)
document.body.style.background="#"+t[1]+o[1]+t[2]+o[2]+t[3]+o[3]
flag=50
}
else
{
r=do_it(1, r)
g=do_it(2,g)
b=do_it(3,b)
hex(1,r)
hex(2,g)
hex(3,b)
document.body.style.background="#"+t[1]+o[1]+t[2]+o[2]+t[3]+o[3]
flag--
}


setTimeout('disco()',0)
}
//-->
</script>

5. Add the below script after this script:      <body>
<body onload='disco()'/>

6. Save your template and see the result.
7. See Test Page for your reference result.

Good Luck

Background Color Effect

Judul: Background Color Effect
Ditulis oleh Unknown
Rating Blog: 5
Semoga artikel Background Color Effect dapat bermanfaat bagi Anda. Jika ingin mengutip, baik itu sebagian atau keseluruhan dari isi artikel ini harap menyertakan link dofollow ke http://smart-best-info.blogspot.com/2009/12/background-color-effect.html. Terima kasih sudah singgah untuk membaca artikel ini, semoga Anda sehat selalu.