我正在尝试摆脱 css 中的 3d 变换函数。我此时的代码几乎是直接从教程中复制而来的,因为无论我多么努力,我似乎都无法让它正常工作。它应该如何看待的链接是:http ://desandro.github.com/3dtransforms/examples/card-01.html
我的代码是:
<html>
<head>
<style media="screen">
.container {
width: 200px;
height: 260px;
position: relative;
-webkit-perspective: 800;
}
#card {
width: 100%;
height: 100%;
position: absolute;
-webkit-transform-style: preserve-3D;
-webkit-transition: -webkit-transform 2s;
}
#card figure {
display: block;
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
}
#card .face1 {
background: red;
}
#card .face2 {
background: blue;
-webkit-transform: rotateY(180deg);
}
#card:hover {
-webkit-transform: rotateY(180deg);
}
</style>
</head>
<body>
<section class="container">
<div id="card">
<figure class="face1">1</figure>
<figure class="face2">2</figure>
</div>
</section>
</body>
</html>
就像我在教程中逐字逐句地说的那样,我唯一改变的是使用悬停而不是按钮。谢谢你的帮助。