Connecting Tech Pros Worldwide Forums | Help | Site Map

Re-Post: Javascript Img. Rollover.

Steve R. Burrus
Guest
 
Posts: n/a
#1: Jul 23 '05
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
Guest
 
Posts: n/a
#2: Jul 23 '05

re: Re-Post: Javascript Img. Rollover.


"Steve R. Burrus" <burrus1@swbell.net> wrote in message
news:buLvc.2337$YR7.550@newssvr23.news.prodigy.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="img.src='intl/en_ALL/images/images_hp.gif'"[color=blue]
><img src="images/logo.gif" border="0" alt="" name="img"></a>[/color]
</body>
</html>


McKirahan
Guest
 
Posts: n/a
#3: Jul 23 '05

re: Re-Post: Javascript Img. Rollover.


"Steve R. Burrus" <burrus1@swbell.net> wrote in message
news:buLvc.2337$YR7.550@newssvr23.news.prodigy.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.javascript" 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,


McKirahan
Guest
 
Posts: n/a
#4: Jul 23 '05

re: Re-Post: Javascript Img. Rollover.


"Steve R. Burrus" <burrus1@swbell.net> wrote in message
news:buLvc.2337$YR7.550@newssvr23.news.prodigy.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.javascript" 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,


McKirahan
Guest
 
Posts: n/a
#5: Jul 23 '05

re: Re-Post: Javascript Img. Rollover.


"Steve R. Burrus" <burrus1@swbell.net> wrote in message
news:buLvc.2337$YR7.550@newssvr23.news.prodigy.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.javascript" 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,


Closed Thread