blob: 59c7b67d8c398c0fdfd41bbdfc13ff5b1f23ffa1 (
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
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.scene {
perspective: 1000px;
transform-style: preserve-3d;
transform: rotateY(0deg);
}
.card {
perspective: 1000px;
transform-style: preserve-3d;
backface-visibility: hidden;
width: 100px;
height: 100px;
}
.front {
transform: rotateY(0deg);
background-color: #00FF00;
}
.back {
transform: rotateY(180deg);
background-color: #FF0000;
}
</style>
</head>
<body>
<div class="scene">
<div class="card front"></div>
<div class="card back"></div>
</div>
</body>
</html>
|