-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtmlcss3(6).html
65 lines (52 loc) · 1.11 KB
/
htmlcss3(6).html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title> Belajar CSS 3 </title>
<style>
body{
margin-bottom: 500px;
margin-left: 50px;
font-size: 50px;
color: black;
}
#kotak{
perspective: 700px;
}
#kartu{
position: relative;
height: 200px; width: 200px;
transition: transform 4s;
border: 5px solid black;
transform-style: preserve-3d;
}
#depan, #belakang{
text-align: center;
position: absolute;
top: 0px; left: 0px;
height: 200px; width: 200px;
backface-visibility: hidden;
}
#depan{
background: blue;
}
#belakang{
background: aqua;
transform: rotateY(180deg);
}
#kartu:hover{
transform: rotateY(180deg);
}
</style>
</head>
<body>
<h1> Flipcard 3D </h1>
<div id="kotak">
<div id="kartu">
<div id="depan"> Depan </div>
<div id="belakang"> Belakang </div>
</div>
</div>
<br>
© inisial K
</body>
</html>