Ich habe einen Code, um Flip zu einem div. Es funktioniert gut in Firefox und Chrome, aber in IE, wenn die Karte kippt, zeigt es die Vorderseite auf den Kopf, anstatt die Rückseite zu zeigen.Flip-Effekt in Internet Explorer
Dies ist der Code:
body {
background: #eee;
}
.card{
width: 300px;
height: 300px;
}
.content {
width: 300px;
height: 300px;
perspective: 500px;
box-shadow: 0 0 15px rgba(0,0,0,0.1);
transition: transform 1s;
transform-style: preserve-3d;
}
.card:hover .content {
transform: rotateX(180deg) ;
transition: transform 0.5s;
}
.front,
.back {
position: absolute;
height: 100%;
width: 100%;
background: white;
line-height: 300px;
color: #03446A;
text-align: center;
font-size: 60px;
border-radius: 5px;
backface-visibility: hidden;
}
.back {
background: #03446A;
color: white;
transform: rotateX(180deg);
}
<div class="card">
<div class="content">
<div class="front">
Front
</div>
<div class="back">
Back!
</div>
</div>
</div>
, welche Version von Internet Explorer – Vishwanath
@Vishwanath 11.0.96 – Crisiiii
IE11 nicht 'transformations Stil unterstützt:. preserve-3d' Siehe http://caniuse.com/#feat= trans Formulare3d – Shaggy