Ambrosia Garden Archive
    • Help meeeee...


      Um. I'm making myself a web page, so I decided to look around at the EV linked pages.
      I noticed that some have these really cool graphics that when you move the mouse over them, they change to another graphic.

      I would REALLY love to do this in my webpage and cannot find myself any references to this feature of HTML on the web. Perhaps it is a JavaScript thing?

      Oh well.

      This is sort of developer related...

      Thanks

      ------------------
      Majordomo
      Captain of the Guard

    • Quote

      Originally posted by Majordomo:
      **
      I would REALLY love to do this in my webpage and cannot find myself any references to this feature of HTML on the web. Perhaps it is a JavaScript thing?

      **

      Yes, it is a JavaScript thing. Do a web search on:

      +HTML +onMouseOver

      ------------------
      Andrew Welch / el Presidente / Ambrosia Software, Inc.
      Never argue with an idiot. They drag you down to their level then beat you with experience.

    • well, if you haven't found what you need yet you could use this code.. this is when linking the button to the ambrosia homepage

      <script language="javascript">
      <~--
      img1on=new Image();
      img1on.src="image2.jpg";

      img1off=new image();
      img1off.src="image1.jpg";

      function img_act(imgName) {

      document(imgName).src=eval(imgName+"on.src");
      }

      function img_inact(imgName) {

      document(imgName).src=eval(imgName+"off.src");
      }
      //-->
      </script>

      <a href="http://www.ambrosiasw.com/" target="_blank"
      onMouseOver="img_act('img1')"
      onMouseOut='img_inact('img1')">
      <img src="image1.jpg" name="img1"></a>

      ------------------
      a meteor, a momentary flare of brilliance.. like all life, Nothing really, in the sweep of time. But everything in the Force.