Click to See Complete Forum and Search --> : I just noticed the colour change when you click log-out
scragar
06-22-2005, 07:39 AM
I just spoted the change in colour when you click log-out to the grey/black stuff, if happens to the adverts on the right as well, is this done using some sort of javascript, or is it another "feature" of IE when used at college?
LiLcRaZyFuZzY
06-22-2005, 07:59 AM
i can't see it in FF
JPnyc
06-22-2005, 11:05 AM
It's an IE proprietary thing, I'm sure. I haven't tracked down the function in this software but I only see it in IE.
LiLcRaZyFuZzY
06-22-2005, 11:16 AM
oh, yes i just saw what you mean! funny, looks like winXP
Ultimater
06-24-2005, 06:21 PM
It's the desired effect, done with filters -- I think it's actually a cool feature.
Works in IE not in FF.
<script type="text/javascript">
<!--
function log_out()
{
ht = document.getElementsByTagName("html");
ht[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)";
if (confirm('Are you sure you want to log out?'))
{
return true;
}
else
{
ht[0].style.filter = "";
return false;
}
}
//-->
</script>
LiLcRaZyFuZzY
06-25-2005, 03:11 AM
yeah it's cool, plus almost no load time! ;)