Forum Moderators: not2easy

Message Too Old, No Replies

What's the name of the technique combining images for nav?

Each option gets zoomed in on

         

Clark

5:19 pm on Oct 8, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I forgot which a list apart article it is that describes the technique of one background image...like how Zeldman's navigation has one image with an "active" and "inactive" part and depending which one is selected it changes color. It also changes color when you hover. Can anyone give me the name of the technique? Thanks.

alias

5:57 pm on Oct 8, 2008 (gmt 0)

10+ Year Member



hi,

theoretically it's 'css image map' - having one image and only showing a part that's required at a given moment.

Martin

swa66

6:10 pm on Oct 8, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Since I don't "follow" ALA, I'm not sure how they call it. But I think of it as "CSS sprites". Although for just a background image shift I think I first used it in a sliding windows menu somewhere.

Once you grasp the technique the name isn't that relevant anymore ;-)

phranque

10:59 pm on Oct 8, 2008 (gmt 0)

WebmasterWorld Administrator 10+ Year Member Top Contributors Of The Month



personally, i call them rollover images but i'm not sure that is an technical term.
as mentioned above, these are typically accomplished with css using the hover property or with javascript using the onmouseover/onmouseout events.
the technique involves replacing the "normal" image with a hover/rollover image whenever the mouse is "over" an element and usually returning to normal when elsewhere.

Clark

2:21 pm on Oct 9, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



It seems css sprites has the tutorial I was looking for. I'm working on it now. Of course, since this is css it doesn't work right off the bat so I have to build it from scratch to see why the hell not. sigh. But thanks everyone :)

swa66

4:56 pm on Oct 9, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Clark,

The homepage of ask.com typically is a beautiful example of css sprites in active use. It might be an inspiration.

They recently updated it, but it's still using CSS sprites.

Clark

6:08 pm on Oct 9, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



will check it now.