-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcube.html
More file actions
28 lines (25 loc) · 732 Bytes
/
cube.html
File metadata and controls
28 lines (25 loc) · 732 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="cube.css" rel="stylesheet" type="text/css">
<title>CSS3立方体效果</title>
</head>
<body>
<div id="experiment">
<div id="pagegroup">
<div class="page" id="before">1</div>
<div class="page" id="behind">2</div>
<div class="page" id="left">3</div>
<div class="page" id="right">4</div>
<div class="page" id="top">5</div>
<div class="page" id="bottom">6</div>
</div>
</div>
<div id="op">
<a href="javascript:next()">next</a> <a href="javascript:pre()">pre</a>
</div>
</body>
</html>