-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbounce.html
29 lines (29 loc) · 908 Bytes
/
bounce.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D CSS</title>
<link rel="stylesheet" href="css/bounce.css">
</head>
<body>
<h1>a css only<br /> 3 dimensionaL scene</h1>
<div class="container">
<div class="scene">
<div class="floor"></div>
<div class="cube">
<div class="front"></div>
<div class="back"></div>
<div class="left"></div>
<div class="right"></div>
<div class="top">
<div class="ballShadow"></div>
</div>
<div class="bottom"></div>
</div>
<div class="ball"></div>
</div>
</div>
</body>
</html>