试图获得像这里显示的第一个框一样的翻转效果http://css3playground.com/flip-card.php
虽然 atm 我得到的只是以下内容,当悬停在上面时只会闪烁一种阴影
这是我使用的代码...
HTML:
<div id="f1_container">
<div id="f1_card" class="shadow">
<div class="front face">
<img src="images/eventbox.png"/>
</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: 350px;
height: 250px;
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;
}
任何帮助都会很棒。