I have a bunch of tiles on a page that expand as the user mouses over them. The expanded one should have the highest z-index, and this works, but I need the z-index to remain until the size transition is complete. Is there a way to do this using CSS only, no JavaScript? Since I'm using transitions, I'm not too worried about compatibility here, I applied progressive enhancement correctly.

Here's a jsFiddle that demonstrates this. Mouse over A; it transitions out. Mouse off of it, however, and it falls behind B. I need it to stay in front of B until the transition completes. Is there an elegant way to do this?

link|improve this question

2  
link to jsFiddle? – Mademoiselle Geek Nov 25 '11 at 4:42
@MademoiselleGeek: Now linked to jsFiddle. :P – minitech Nov 25 '11 at 4:44
@minitech, obvious thing that come to my mind was to animate the z-index as well as. z-index is animatable property but unfortunately that doesn't seem to work. – VinayC Nov 25 '11 at 5:00
@VinayC: I could get it to work, but the problem there is that it requires precisely calculated values for z-index, something that won't be easy to do. I'd rather use JavaScript if that's the only solution... – minitech Nov 25 '11 at 5:01
feedback

4 Answers

up vote 2 down vote accepted

You need to define the z-index, as well as animate it.

This works in Firefox (8.0.1) and Webkit.

link|improve this answer
Perfect, thanks. – minitech Nov 25 '11 at 14:40
feedback

You need to set z-index to transition too: http://jsfiddle.net/uHJwT/2/

link|improve this answer
Um... did you try that? It doesn't work. The behaviour is identical. – minitech Nov 25 '11 at 5:02
It works correctly in Webkit. – bookcasey Nov 25 '11 at 5:14
yes it's work :) – sandeep Nov 25 '11 at 5:20
1  
This was the first thing that I had tried but doesn't seem to work in FF! – VinayC Nov 25 '11 at 5:22
Exactly. Doesn't work in Firefox. – minitech Nov 25 '11 at 14:33
show 1 more comment
feedback

Try using transitions like in http://jsfiddle.net/frozenkoi/YK52N/ (note the comments in the CSS section, for both the .item and .item:hover)

The trick is to use transitions for the z-index property too. You can set, for example, a value of 10 for the normal items and 11 for the hovered ones. You also have to use transition-delay so that the animation for moving the mouse out doesn't reset the z-index inmediately. Next, add a different value to transition-delay to the rule for :hover with a value of zero so that the z-index does update inmediately when the mouse goes into the item.

In short, .item has the transition for mouse out of the item and .item:hover the rules for when the mouse moves in.

link|improve this answer
feedback

Here's the one solution: http://jsfiddle.net/uHJwT/4/

Essentially, it uses another wrapper div that has sufficient width & height to cover animated surface - on hover, it elevates its z-index so that the animated div remains on top. Of course, this is not full-proof solution - it is based on the fact that typical hover off would be down movement and it works for that - but hover off in diagonal direction would not work. But seems to be a reasonable CSS only solution - I would rather used js to get a perfect one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.