View Full Version : How do I get this...


speedyx
07-31-2005, 06:15 PM
http://www.xanga.com/XxLilAznKutiexX

mouseover, and you can see her entries, how do I do that?

lefty
07-31-2005, 07:08 PM
I don't see anything... what is it supposed to do?

speedyx
07-31-2005, 07:16 PM
I don't see anything... what is it supposed to do?


um, on her post, it's faded...and when I put my mouse over it, it became darker..

tokyo bleu
07-31-2005, 08:56 PM
<script language="javascript">
//Sets blog opacity (0-100)
opcty = 35;

//Sets rollover opacity
msvropcty = 100;

////////////////////////////////////

tables = document.getElementsByTagName('table');

for(var j=0;j<tables.length;j++){

if(tables[j].className == "blogbody"){

tables[j].style.filter = "alpha(opacity=" + opcty + ")";
tables[j].onmouseover = function(){this.style.filter = "alpha(opacity=" + msvropcty + ")";}
tables[j].onmouseout = function(){this.style.filter = "alpha(opacity=" + opcty + ")";}

}

}

//--></script>

Website Stats. Since the forum inputs spaces in long scripts, you can see there's a space in each of the filter part of the script. When you copy and paste that into your own Website Stats, just remove the space.

speedyx
07-31-2005, 09:47 PM
oooh, alrite thanks alotTTT