inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Jun 7, 2005 0:13:12 GMT -8
Global FooterThis script will allow you to change any image on your forum to have a rollover. <script type="text/javascript"> <!--
// Image rollover effect
function doRollOver(oldsrc, newsrc, title){ var img = { oldsrc: null, oldtitle: null }; var iImg = document.getElementsByTagName("img"); for(i = 0; i < iImg.length; i ++){ if(iImg.item(i).src.match(new RegExp(oldsrc))){ iImg.item(i).onmouseover = function(){ img.oldsrc = this.src; img.oldtitle = this.alt; this.src = newsrc; this.title = title; } iImg.item(i).onmouseout = function(){ this.src = img.oldsrc; this.title = img.oldtitle; } } } }
doRollOver("IMAGE TARGET", "OVER IMAGE", "TITLE");
//--> </script>An example of how to change the home button in the menu would be... doRollOver("/home.gif", "http://www.proboards8.com/v4images/menu/help.gif", "Help");That would change the button to the help button. You can add as many as you like
|
|