gpt4 book ai didi

javascript - 如何使 div 跨浏览器一致地翻转?

转载 作者:太空宇宙 更新时间:2023-11-04 15:21:08 24 4
gpt4 key购买 nike

我正在尝试使用 css 和 JQuery 在水平面上制作一个 div 翻转。我在 JSFiddle 上找到了一些非常巧妙地执行此操作的代码,但我不明白为什么它不能在 Firefox 上运行,但可以在 Chrome 和 Safari 上运行(我目前只在 OSX 上测试过)。

http://jsfiddle.net/TLCqu/2/

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;
}

我在 -webkit-transform: 之后添加了 -moz-transform: rotateY(-180deg); 任何使用它的地方。这具有使文本反转但不是 div 的奇怪效果。我不确定什么在 webkit 中有效或我应该改变什么。

最佳答案

对于 mozilla,您需要使用 -moz-。这是您的 CSS 的更新版本:

body {
background: #ccc;
}
.flip {
-webkit-perspective: 800;
-moz-perspective: 800;
width: 400px;
height: 200px;
position: relative;
margin: 50px auto;
}
.flip .card.flipped {
-webkit-transform: rotatey(-180deg);
-moz-transform: rotatey(-180deg);
}
.flip .card {
width: 100%;
height: 100%;
-webkit-transform-style: preserve-3d;
-webkit-transition: 0.5s;
-moz-transform-style: preserve-3d;
-moz-transition: 0.5s;
}
.flip .card .face {
width: 100%;
height: 100%;
position: absolute;
-webkit-backface-visibility: hidden;
-moz-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);
-moz-transform: rotatey(-180deg);
background: blue;
background: white;
color: black;
cursor: pointer;
}

演示: http://jsfiddle.net/TLCqu/3/

希望这对您有所帮助!

关于javascript - 如何使 div 跨浏览器一致地翻转?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14571387/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com