Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have created a simple "flip card" in CSS3, and when a user hovers over the card, it would flip downward and show the other side. backface-visibility is set to hidden so the back face will not be shown. However, when I try flipping the card, the backside is still showing up.

So I have taken a look in the working examples I found, and interestingly I have almost the same thing as his, and his does work but not mine. (How is that even possible?!) Following an answer here also does not work (because I have already set everything backface-visibility to hidden).

Here's a piece of my code:

$(".wrapper").hover(function () {
    $(".flip").stop().transition({
        perspective: '100px',
        rotateX: '-180deg'
    }).toggleClass("down");
}, function () {
    $(".flip").stop().transition({
        perspective: '100px',
        rotateX: '0deg'
    }).toggleClass("down");
});

Any idea on why this happened?

share|improve this question

1 Answer

up vote 2 down vote accepted

A small addition does the trick:

.flip {
  ...
  -webkit-transform-style: preserve-3d;
}

Without or with another prefix for non-webkit browsers, depending on their support.

share|improve this answer
The only non-WebKit browser supporting transform-style is Firefox, which supports it without a prefix. – Ana Mar 16 at 9:37
You are partially right. Support without a prefix is only offered in recent versions of Firefox. transform-style is also supported by IE10, but not the value preserve-3d. – zeroflagL Mar 16 at 9:55
@zeroflagL - Thanks, it does the trick. – Derek 朕會功夫 Mar 16 at 17:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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