Disco Background Effect
Get into the groove with this disco background effect script! It fades the background color continuously using a variety of colors, as if it were the dance floor!
Step 1: Insert the following code into the section of your page:
Step 2: Add the below event handler into the tag itself, like this:
Get into the groove with this disco background effect script! It fades the background color continuously using a variety of colors, as if it were the dance floor!
Step 1: Insert the following code into the section of your page:
- Code:
<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()',50)
}
//-->
</script>
Step 2: Add the below event handler into the tag itself, like this:
- Code:
<body onload="disco()">
Mon Nov 23, 2020 5:23 am by y3hoo
» Tentang Tisu Magic
Wed Jul 17, 2019 7:29 am by jakarta
» Ini 5 Tata Cara Makan Gaya China yang Penting Ditaati
Tue Sep 11, 2018 11:37 am by jakarta
» Cara Mengetahui IP address Internet
Fri Aug 03, 2018 11:31 am by alia
» Angleng dan Wajit
Mon Jul 23, 2018 10:40 am by jakarta
» Penginapan-penginapan Unik dan Recommended di Cikole, Lembang
Mon Jul 09, 2018 11:59 am by flade
» Tips Bercinta dari Wanita yang Sudah Survei ke Lebih dari 10 Ribu Pria
Thu Jun 21, 2018 2:57 pm by flade
» Cara Menghilangkan Activate Windows 10
Fri Jun 15, 2018 2:08 pm by y3hoo
» Selamat Hari Raya Idul fitri 1439 H /2018 M
Thu Jun 14, 2018 9:40 am by y3hoo