Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
webdesign
#15
*sigh* i really have no idea what's going on here with the css, as i've never used to rollover anything but plain text. This is simple, easy code to do an image rollover with javascript.

put this in your header tag:
Code:
<SCRIPT>
    function OnPic (num) {
      eval("document.getElementById(\"m"+num+"\").src=\"n"+num+".gif\";");
      return true;
    }

    function OffPic (num) {
      eval("document.getElementById(\"m"+num+"\").src=\"m"+num+".gif\";");
      return true;
    }
  </SCRIPT>

and use these as your links:
Code:
<a href="index.shtml" onMouseOver="OnPic(1)" onMouseOut="OffPic(1)"><img src="m1.gif" border=0 id="m1"></a>
  <a href="services.shtml" onMouseOver="OnPic(2)" onMouseOut="OffPic(2)"><img src="m2.gif" border=0 id="m2"></a>
  <a href="portfolio.shtml" onMouseOver="OnPic(3)" onMouseOut="OffPic(3)"><img src="m3.gif" border=0 id="m3"></a>
  <a href="contact.shtml" onMouseOver="OnPic(4)" onMouseOut="OffPic(4)"><img src="m4.gif" border=0 id="m4"></a>

I guess I only use the "CSS Revolution" when it's easier, for layers and positioning now and then. But good ol' html, tables, javascript and css where I need it has never failed me.
i]"I know what you're thinking. Did he fire six shots or only five? Well, to tell you the truth, in all this excitement, I've kinda lost track myself. But being as this is a .44 Magnum ... you've got to ask yourself one question: 'Do I feel lucky?' Well, do ya punk?"[/i] - Dirty Harry
Reply


Messages In This Thread
webdesign - by red_Marvin - 06-06-2003, 12:00 AM
webdesign - by ak00ma - 06-06-2003, 12:39 AM
webdesign - by Zack - 06-06-2003, 01:08 AM
webdesign - by Ninkazu - 06-06-2003, 02:43 AM
webdesign - by Agamemnus - 06-06-2003, 03:51 AM
webdesign - by Zack - 06-06-2003, 04:42 AM
webdesign - by toonski84 - 06-06-2003, 04:45 AM
webdesign - by Neo - 06-06-2003, 06:42 PM
webdesign - by red_Marvin - 06-06-2003, 06:49 PM
webdesign - by Neo - 06-06-2003, 06:51 PM
webdesign - by Hexadecimal Disaster - 06-07-2003, 10:40 AM
webdesign - by Dav - 06-07-2003, 05:24 PM
webdesign - by Zack - 06-08-2003, 06:38 PM
webdesign - by red_Marvin - 06-08-2003, 11:27 PM
webdesign - by toonski84 - 06-09-2003, 12:39 AM
webdesign - by Agamemnus - 06-09-2003, 01:30 AM
webdesign - by KingCheetah - 06-26-2003, 03:40 AM
webdesign - by KingCheetah - 06-26-2003, 03:43 AM
webdesign - by oracle - 06-28-2003, 10:50 AM
webdesign - by aetherfox - 07-06-2003, 03:32 AM
webdesign - by red_Marvin - 07-09-2003, 02:45 AM
webdesign - by wizardlife - 07-09-2003, 04:08 AM
webdesign - by oracle - 07-09-2003, 05:57 AM
webdesign - by na_th_an - 07-09-2003, 07:16 AM
webdesign - by toonski84 - 07-09-2003, 07:33 AM
webdesign - by oracle - 07-09-2003, 10:11 AM
webdesign - by toonski84 - 07-09-2003, 11:47 AM
webdesign - by oracle - 07-10-2003, 03:19 AM
webdesign - by toonski84 - 07-10-2003, 03:28 AM
webdesign - by oracle - 07-11-2003, 03:21 AM
webdesign - by KingCheetah - 08-26-2003, 03:03 AM
webdesign - by oracle - 08-26-2003, 03:18 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)