我正在嘗試製作卡片翻轉並顯示其背面。它適用於所有其他瀏覽器,但不適用於Internet Explorer 11.卡片翻轉動畫Internet Explorer 11
我試着添加-ms-序言,但沒有幫助。問題似乎是IE不支持css屬性transform-style: preserve-3d
。
這裏是一個的jsfiddle:https://jsfiddle.net/gbkq94hr/
HTML
<body>
<article>
<div id="card0" class="card">
<figure class="front">
</figure>
<figure class="back">
</figure>
</div>
</article>
</body>
JS
$(document).ready(function() {
var flipped = false;
var card = $("#card0");
card.click(function() { flipFunction();});
function flipFunction() {
if (flipped) {
flipped = false;
card.removeClass('flip');
} else {
card.addClass('flip');
flipped = true;
}
};
});
CSS
html {
height: 100%;
}
.flip {
transform: rotateY(180deg);
}
.card {
float:left;
width: 110px;
height: 139px;
cursor: pointer;
transform-style: preserve-3d;
transition: transform 1s;
position: relative;
}
figure {
margin: 0;
display: block;
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
-ms-backface-visibility:hidden;
}
.back {
background-color: blue;
transform: rotateY(-180deg);
}
.front {
z-index: 2;
background-color: red;
transform:rotateY(0deg);
}
article {
height: 114px;
width: 114px;
perspective: 1000;
}
編輯:
正如評論中所建議的那樣,我試着遵循David Walshes的指示,但仍然無法使其工作。 https://jsfiddle.net/w9o2chmn/2/
請參閱https://davidwalsh.name/css翻轉它可能有幫助 – RRR
這可以工作,但我不能讓它在按鈕點擊工作。 :/ – Waltari
請檢查我的回答 – RRR