[jQuery] Re: HOWTO - hover card effect

2009-04-07 Thread Giovanni Battista Lenoci
Jury ha scritto: Hi all, this effect seems to have no common name, let's call it hover card. You may see how it works on this website - www.cn.ru/films - if you hold a mouse over any cover art for 1-2 seconds (sorry it's Russian, just can't find English examples). Does jQuery have any plugin

[jQuery] Re: HOWTO - hover card effect

2009-04-07 Thread Shawn
From what I can see of the effect visually (didn't look at code), this appears to be a simple creative use of a popup div positioned over the original image such that the image in the popup appears to not move. As Giovanni mentioned, hover intent is part of the solution. But I think you

[jQuery] Re: HOWTO - hover card effect

2009-04-07 Thread Jack Killpatrick
Interesting effect. The main effect is done by toggling the z-index of the block (from 10 to 11 to show and back to 10 to hide) and changing overflow from hidden to visible. Adding/removing the .visible class handles that: .blockz-films .visible { overflow:visible; z-index:11; }