Webmaster Forum


Go Back   Webmaster Forum > Web Development > Web Design Lobby > Coding Forum
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Coding Forum Problems with your code? Let's hear about it.

Sponsored Reviews   ClickBooth Network   V7N Directory

Reply
 
LinkBack Thread Tools Display Modes
Old 08-17-2007, 12:19 PM   #1 (permalink)
Inactive
 
Join Date: 11-07-06
Location: Springfield
Posts: 111
iTrader: 0 / 0%
daniel0012 is on the right pathdaniel0012 is on the right path
Send a message via AIM to daniel0012 Send a message via MSN to daniel0012 Send a message via Yahoo to daniel0012
Creating a rollover image.

I am creating an image gallery, and one thing I would like to have is when a user rolls over a thumbnail, the image is displayed and disappears when the user rolls off the thumbnail.

Does anyone know of a good tutorial that shows how to do this?
daniel0012 is offline  
Add Post to del.icio.us
Reply With Quote
Sponsored Links
SEO Hosting by HostGator  Advertise Here  Buy Blog Links
Old 08-17-2007, 12:48 PM   #2 (permalink)
v7n Mentor
 
Costin Trifan's Avatar
 
Join Date: 04-13-07
Location: Romania
Posts: 2,939
iTrader: 0 / 0%
Costin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web pro
There are a lot of ways to have a rollover effect...Is there a live example of what you want so we can have an idea of it?

Some examples:
- hovering over one image and the same image is displayed at it's real size in a different place on the page
- the same as above, only that the image is resized in the same place
...
and so on...
__________________
JUNE - JavaScript Framework
Costin Trifan is offline  
Add Post to del.icio.us
Reply With Quote
Old 08-18-2007, 12:27 PM   #3 (permalink)
Inactive
 
Join Date: 11-07-06
Location: Springfield
Posts: 111
iTrader: 0 / 0%
daniel0012 is on the right pathdaniel0012 is on the right path
Send a message via AIM to daniel0012 Send a message via MSN to daniel0012 Send a message via Yahoo to daniel0012
Quote:
Originally Posted by Costin Trifan View Post
- the same as above, only that the image is resized in the same place
...
and so on...
Yes, when you hover over the the thumbnail and the full image is displayed in the same place.

I couldn't find an example of it though.
daniel0012 is offline  
Add Post to del.icio.us
Reply With Quote
Old 08-19-2007, 06:03 PM   #4 (permalink)
v7n Mentor
 
Taltos's Avatar
 
Join Date: 11-22-06
Location: Phoenix, AZ
Posts: 1,788
iTrader: 0 / 0%
Latest Blog:
None

Taltos is a highly respected web proTaltos is a highly respected web proTaltos is a highly respected web proTaltos is a highly respected web proTaltos is a highly respected web proTaltos is a highly respected web proTaltos is a highly respected web proTaltos is a highly respected web proTaltos is a highly respected web proTaltos is a highly respected web proTaltos is a highly respected web pro
Send a message via Yahoo to Taltos
Hey daniel, try this:

http://sonspring.com/journal/hoverbox-image-gallery

I didn't look hard at it but it is a tutorial or you can just download the code and use it. The example looked pretty good. Check it out and let us know if it works for you.
__________________
Experimenting
Taltos is offline  
Add Post to del.icio.us
Reply With Quote
Old 08-20-2007, 05:58 PM   #5 (permalink)
v7n Mentor
 
Costin Trifan's Avatar
 
Join Date: 04-13-07
Location: Romania
Posts: 2,939
iTrader: 0 / 0%
Costin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web pro
I might be kind of late here..(you probably figured how to do it already), but anyway:

the HTML:
Code:
<div id="GalleryWrapper"> <img id="GalleryImage1" class="ImageNormal" alt="Image1" src="rss.gif" /><img id="GalleryImage2" alt="Image 2" class="ImageNormal" src="rss2.gif" /><img id="GalleryImage3" alt="" class="ImageNormal" src="rss_nav.gif" /> </div>
the CSS:
Code:
DIV#GalleryWrapper { width: auto; height: auto; padding: 3px 3px 3px 3px; /* T R B L */ text-align: left; vertical-align: top; } DIV#GalleryWrapper IMG { border: none; cursor: pointer; } IMG.ImageNormal { width: 16px; height: 16px; margin: 3px 3px 3px 3px; /* T R B L */ } IMG.ImageNormal:link, IMG.ImageNormal: visited { width: 16px; height: 16px; margin: 3px 3px 3px 3px; /* T R B L */ } IMG.ImageNormal:hover { width: 20px; height: 20px; margin: 1px 1px 1px 1px; /* T R B L */ }
hope this helps,

Costin
__________________
JUNE - JavaScript Framework
Costin Trifan is offline  
Add Post to del.icio.us
Reply With Quote
Old 08-21-2007, 11:24 AM   #6 (permalink)
Inactive
 
Join Date: 11-07-06
Location: Springfield
Posts: 111
iTrader: 0 / 0%
daniel0012 is on the right pathdaniel0012 is on the right path
Send a message via AIM to daniel0012 Send a message via MSN to daniel0012 Send a message via Yahoo to daniel0012
Thank you so much, that's exactly it.
daniel0012 is offline  
Add Post to del.icio.us
Reply With Quote
Old 08-21-2007, 11:54 PM   #7 (permalink)
v7n Mentor
 
Costin Trifan's Avatar
 
Join Date: 04-13-07
Location: Romania
Posts: 2,939
iTrader: 0 / 0%
Costin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web pro
You're welcome, Daniel!
__________________
JUNE - JavaScript Framework
Costin Trifan is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Web Development > Web Design Lobby > Coding Forum

Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Rollover image Help x360 Coding Forum 49 07-25-2007 11:24 AM
image rollover???? ball420 Web Design Lobby 2 03-02-2007 05:48 PM
Image-to-Text Rollover (CSS) chicgeek Coding Forum 11 08-21-2006 12:21 PM
Problem with image rollover and text change Lucky Luciano Web Design Lobby 3 05-05-2004 11:55 AM
Rollover Image Pimpen 2010 Web Design Lobby 18 11-04-2003 10:51 AM


Sponsor Links
Get exposure! Get exposure! Find Scripts Web Hosting Directory Get exposure! SEO Blog


All times are GMT -7. The time now is 02:43 AM.
© Copyright 2008 V7 Inc