+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 20

Thread: Mouseover Images

  1. #1
    Join Date
    Jul 2005
    Location
    Palm Coast, FL
    Posts
    17

    Default Mouseover Images

    Can anyone recommend software that generates the code for mouseover images. I don't mean button rollovers, but when you move your mouse over a thumbnail it previews the larger image above. TIA!

  2. #2
    Join Date
    Jun 2004
    Location
    Auckland, New Zealand
    Posts
    594

  3. #3
    Join Date
    Jul 2005
    Location
    Palm Coast, FL
    Posts
    17

    Default Re: Mouseover Images

    I don't know, but here's an example fo what I mean:
    http://www.irenemoralesward.com/list...p?propid=11731

  4. #4
    Join Date
    Mar 2005
    Location
    Key West, FL
    Posts
    499

    Default Re: Mouseover Images

    Quote Originally Posted by Waterfront
    Can anyone recommend software that generates the code for mouseover images. I don't mean button rollovers, but when you move your mouse over a thumbnail it previews the larger image above. TIA!
    It's a two step process. You first have to prelaod the images then use javascript for the rollover effect. There is an online generator at: http://javascript.internet.com/gener...ad-images.html

    I haven't used it so I don't know how well it works. If you have trouble let me know and I give you the url of one of my sites with an example you can follow.

  5. #5
    Join Date
    Jul 2005
    Location
    Palm Coast, FL
    Posts
    17

    Default Re: Mouseover Images

    Quote Originally Posted by frobn
    It's a two step process. You first have to prelaod the images then use javascript for the rollover effect. There is an online generator at: http://javascript.internet.com/gener...ad-images.html

    I haven't used it so I don't know how well it works. If you have trouble let me know and I give you the url of one of my sites with an example you can follow.
    Thanks, but this one seems to be a button rollover.

  6. #6
    Join Date
    Jul 2005
    Location
    Atlanta, GA
    Posts
    147

    Default Re: Mouseover Images

    I'm not sure but I want to say you can do it in FrontPage. If I understand your question correctly I know you can create changing rollover images with Adobe Photoshop and Image Ready. Importing the Photoshop image to Image Ready.
    Infinity Commercial Group - Commercial Lending Services

    Infinity Website

  7. #7
    Aaron is offline Real Estate Webmasters Staff Aaron's Most Recent Blog Entry: Email etiquette Aaron is on a distinguished road
    Join Date
    Jun 2005
    Location
    Nanaimo
    Posts
    24,278

    Default Re: Mouseover Images

    This is way to cool image changer code... I found it on another forum which the links don't seem to work to. But anyways...

    Code:
    <script type="text/javascript">
    var imgs = new Array("images/pic0.jpg","images/pic1.jpg","thumbs/somepic.jpg");
    function loadMainImg(num) {
    document.getElementById("mainImg").src = imgs[num];
    }
    </script>
    <img id="thumb0" height="60" width="45" onmouseover="loadMainImg(0)" src="thumbs/pic0.jpg"/>
    <img id="thumb1" height="60" width="45" onmouseover="loadMainImg(1)" src="thumbs/pic1.jpg"/>
    <img id="thumb1" height="60" width="45" onmouseover="loadMainImg(2)" src="thumbs/somepic.jpg"/>
    <img id="mainImg" src="images/somePic.jpg"/>
    Last edited by Aaron; 08-11-2005 at 12:41 AM.

  8. #8
    Join Date
    Oct 2005
    Posts
    6

    Default Re: Mouseover Images

    Maybe you should try Flash, it would be easier that way. Javascript can be buggy at times.

  9. #9
    Aaron is offline Real Estate Webmasters Staff Aaron's Most Recent Blog Entry: Email etiquette Aaron is on a distinguished road
    Join Date
    Jun 2005
    Location
    Nanaimo
    Posts
    24,278

    Default Re: Mouseover Images

    I don't know ... for me flash would be much less easy, slightly more complicated... So far the Javascript has worked pretty good.

  10. #10
    Join Date
    Nov 2005
    Posts
    240

    Default Re: Mouseover Images

    Could you post another example of this desired effect? The example you posted seems to be missing or removed now.

+ Reply to Thread
Page 1 of 2 1 2 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts