Re-Post: Javascript Img. Rollover.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Steve R. Burrus

    Re-Post: Javascript Img. Rollover.

    How do you go about getting a basic image "rollover" achieved in
    Javascript anyway, i.e., get a changing image???!!! I used to do a
    rotating ad banner some time ago, so I wanna do basically the same thing
    right now, with as little effort on my part as possible. I can almost
    recall the code to use to do this, but not quite, so can someone please
    help me out?

  • McKirahan

    #2
    Re: Re-Post: Javascript Img. Rollover.

    "Steve R. Burrus" <burrus1@swbell .net> wrote in message
    news:buLvc.2337 $YR7.550@newssv r23.news.prodig y.com...[color=blue]
    > How do you go about getting a basic image "rollover" achieved in
    > Javascript anyway, i.e., get a changing image???!!! I used to do a
    > rotating ad banner some time ago, so I wanna do basically the same thing
    > right now, with as little effort on my part as possible. I can almost
    > recall the code to use to do this, but not quite, so can someone please
    > help me out?
    >[/color]

    Will this help? Watch for word-wrap.

    <html>
    <head>
    <title>rollover .htm</title>
    </head>
    <body>
    <base href="http://www.google.com/">
    <a href="#"
    onMouseOut="img .src='images/logo.gif'"
    onMouseOver="im g.src='intl/en_ALL/images/images_hp.gif'"[color=blue]
    ><img src="images/logo.gif" border="0" alt="" name="img"></a>[/color]
    </body>
    </html>


    Comment

    • McKirahan

      #3
      Re: Re-Post: Javascript Img. Rollover.

      "Steve R. Burrus" <burrus1@swbell .net> wrote in message
      news:buLvc.2337 $YR7.550@newssv r23.news.prodig y.com...[color=blue]
      > How do you go about getting a basic image "rollover" achieved in
      > Javascript anyway, i.e., get a changing image???!!! I used to do a
      > rotating ad banner some time ago, so I wanna do basically the same thing
      > right now, with as little effort on my part as possible. I can almost
      > recall the code to use to do this, but not quite, so can someone please
      > help me out?
      >[/color]

      This was posted on 05/20/2004 in "comp.lang.java script" under "JavaScript
      Animation Tutorial":

      Hi All,

      If anyone needs help doing rollovers or more complicated JavaScript
      Animation, check out http://www.schrenk.com/js

      Very interesting examples.
      --flipper,


      Comment

      • McKirahan

        #4
        Re: Re-Post: Javascript Img. Rollover.

        "Steve R. Burrus" <burrus1@swbell .net> wrote in message
        news:buLvc.2337 $YR7.550@newssv r23.news.prodig y.com...[color=blue]
        > How do you go about getting a basic image "rollover" achieved in
        > Javascript anyway, i.e., get a changing image???!!! I used to do a
        > rotating ad banner some time ago, so I wanna do basically the same thing
        > right now, with as little effort on my part as possible. I can almost
        > recall the code to use to do this, but not quite, so can someone please
        > help me out?
        >[/color]

        This was posted on 05/20/2004 in "comp.lang.java script" under "JavaScript
        Animation Tutorial":

        Hi All,

        If anyone needs help doing rollovers or more complicated JavaScript
        Animation, check out http://www.schrenk.com/js

        Very interesting examples.
        --flipper,


        Comment

        • McKirahan

          #5
          Re: Re-Post: Javascript Img. Rollover.

          "Steve R. Burrus" <burrus1@swbell .net> wrote in message
          news:buLvc.2337 $YR7.550@newssv r23.news.prodig y.com...[color=blue]
          > How do you go about getting a basic image "rollover" achieved in
          > Javascript anyway, i.e., get a changing image???!!! I used to do a
          > rotating ad banner some time ago, so I wanna do basically the same thing
          > right now, with as little effort on my part as possible. I can almost
          > recall the code to use to do this, but not quite, so can someone please
          > help me out?
          >[/color]

          This was posted on 05/20/2004 in "comp.lang.java script" under "JavaScript
          Animation Tutorial":

          Hi All,

          If anyone needs help doing rollovers or more complicated JavaScript
          Animation, check out http://www.schrenk.com/js

          Very interesting examples.
          --flipper,


          Comment

          Working...