It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!)

Forum

Log In Sponsors
Board index Programming JavaScript Forum

wierd collor flashes in fade

wierd collor flashes in fade

Postby DOOMDUDEMX on Tue Aug 12, 2008 8:55 pm

i have made a script which fades the document back ground to grey or whatever collor you want when the window gets inactive and fades back again when the window gets active again...

however, in the frame before the end of the fade another collor is shown which interrupt the smoothness of the effect.

here is the script and html..

go ahead and try it out and see for yourselves if it makes the whole thing easier...
____________________________________________________________

<html>
<head>
<script language="javascript">

function func1()
{
if(a!=99)
{
setTimeout("func1()",1);
a++;
document.bgColor='#'+'99'+a+a;
}

}

function func2()
{
if(a!=0)
{
setTimeout("func2()",1);
a--;
document.bgColor='#'+'99'+a+a;
}

}
</script>
</head>
<body onFocus="a=99;func2();" onBlur="a=0;func1();">
</body>
</html>
DOOMDUDEMX
 
Posts: 2
Joined: Tue Aug 12, 2008 8:40 pm

Postby rangana on Tue Aug 12, 2008 11:57 pm

Change your script to:
Code: Select all
<script type="text/javascript">

function func1()
{
if(a!=99)
{
setTimeout("func1()",1);
a++;
document.body.style.backgroundColor='#'+'99'+a+a;
}

}

function func2()
{
if(a!=0)
{
setTimeout("func2()",1);
a--;
document.body.style.backgroundColor='#'+'99'+a+a;
}

}
</script>
User avatar
rangana
500+ Club
 
Posts: 935
Joined: Wed Feb 27, 2008 5:14 am
Location: Cebu City Philippines

THANX!!

Postby DOOMDUDEMX on Wed Aug 13, 2008 11:17 am

it worked :D

thanks a lot but im just curious...

what makes this method work better in this case???
DOOMDUDEMX
 
Posts: 2
Joined: Tue Aug 12, 2008 8:40 pm

Postby rangana on Wed Aug 13, 2008 11:24 am

I used the valid way of changing the background, and it's via CSS.

Try to examine my modification from yours.

Hope that helps. Anyway, glad to help :)
User avatar
rangana
500+ Club
 
Posts: 935
Joined: Wed Feb 27, 2008 5:14 am
Location: Cebu City Philippines


Who is online

Users browsing this forum: No registered users and 8 guests