我正在尝试使用 css 和 JQuery 在水平面上进行 div 翻转。我在 JSFiddle 上发现了一些代码可以非常巧妙地做到这一点,但我不明白为什么它不能在 Firefox 上运行,但可以在 Chrome 和 Safari 上运行(我目前只在 OSX 上测试过)。
CSS如下:
body {
background: #ccc;
}
.flip {
-webkit-perspective: 800;
width: 400px;
height: 200px;
position: relative;
margin: 50px auto;
}
.flip .card.flipped {
-webkit-transform: rotatey(-180deg);
}
.flip .card {
width: 100%;
height: 100%;
-webkit-transform-style: preserve-3d;
-webkit-transition: 0.5s;
}
.flip .card .face {
width: 100%;
height: 100%;
position: absolute;
-webkit-backface-visibility: hidden;
z-index: 2;
font-family: Georgia;
font-size: 3em;
text-align: center;
line-height: 200px;
}
.flip .card .front {
position: absolute;
z-index: 1;
background: black;
color: white;
cursor: pointer;
}
.flip .card .back {
-webkit-transform: rotatey(-180deg);
background: blue;
background: white;
color: black;
cursor: pointer;
}
我在使用它的任何地方-moz-transform: rotateY(-180deg);
之后添加-webkit-transform:
。这具有使文本反转的奇怪效果,但不是 div。我不确定 webkit 中什么有效或我应该改变什么。