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>
私がチュートリアルから一言一句言ったように、私が変更したのはボタンの代わりにホバーを使用することだけでした。助けてくれてありがとう。