blob: 47db3e64f2424d1a86311544aac0135ffc488279 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<!DOCTYPE html>
<html>
<body>
<style>
#container {
position: relative;
margin: 10px auto;
width: 450px;
height: 281px;
z-index: 1;
perspective: 1000px;
}
#card {
width: 100%;
height: 100%;
transform-style: preserve-3d;
transform: rotateY(165deg);
}
.face {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
background: red;
}
.face.back {
display: block;
transform: rotateY(180deg);
box-sizing: border-box;
padding: 10px;
color: white;
text-align: center;
background: green;
}
</style>
<div id="container" class="hover">
<div id="card">
<div class="back face">
</div>
</div>
</div>
</body></html>
|