Faded entries |
Faded entries |
![]()
Post
#1
|
|
Newbie ![]() Group: Member Posts: 1 Joined: Apr 2007 Member No: 517,760 ![]() |
Hey, does anyone know how to make the entries in your xanga faded until your mouse hovers over a particular entry???
I have been looking for a long time, thank you very much for anyones help!! |
|
|
![]() |
*digital.fragrance* |
![]()
Post
#2
|
Guest ![]() |
Try this:
CODE <script language="javascript">
//Sets blog opacity (0-100) opcty = 10; //Sets rollover opacity msvropcty = 100; //////////////////////////////////// tables = document.getElementsByTagName('table'); for(var j=0;j<tables.length;j++){ if(tables[j].className == "main"){ 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> |
|
|
![]() ![]() |