我一直在尝试为我一直在从事的项目创建一个 3D 外观的卡片翻转类型的动画。不幸的是,我的动画看起来并不完全是 3D。
我一直在使用本指南。在第一个例子中,这个人设法让它看起来像 windows 背景在翻转。但是,当我尝试在JSFiddle上使用相同的代码时,结果与他的不同。
他的演示代码产生了下面的效果。当卡片被翻转时,它会导致一侧变小,给人一种透视的印象:
在我的 JSFiddle 上使用他的代码(除了不同的背景),两侧似乎始终保持相同的大小:
有人可以向我解释我错过了什么,或者如何在他的网站上获得相同的透视效果吗?提前致谢。
他的 HTML 代码:
<div id="f1_container">
<div id="f1_card" class="shadow">
<div class="front face">
<img src="/images/Windows%20Logo.jpg"/>
</div>
<div class="back face center">
<p>This is nice for exposing more information about an image.</p>
<p>Any content can go here.</p>
</div>
</div>
</div>
他的 CSS 代码:
#f1_container {
position: relative;
margin: 10px auto;
width: 450px;
height: 281px;
z-index: 1;
}
#f1_container {
perspective: 1000;
}
#f1_card {
width: 100%;
height: 100%;
transform-style: preserve-3d;
transition: all 1.0s linear;
}
#f1_container:hover #f1_card {
transform: rotateY(180deg);
box-shadow: -5px 5px 5px #aaa;
}
.face {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
}
.face.back {
display: block;
transform: rotateY(180deg);
box-sizing: border-box;
padding: 10px;
color: white;
text-align: center;
background-color: #aaa;
}