-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (47 loc) · 1.78 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<!-- Article: http://www.paulrhayes.com/2009-07/animated-css3-cube-interface-using-3d-transforms/ -->
<!-- Demo: http://www.paulrhayes.com/experiments/cube-3d/ -->
<!-- Originally posted: 17th July 2009 -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>3D CSS cube, use arrow keys to rotate — Paul Hayes</title>
<meta name="author" content="Paul Hayes" />
<link rel="canonical" href="http://www.paulrhayes.com/experiments/cube-3d/" />
<link rel="stylesheet" href="../experiment-styles.css" />
<link rel="stylesheet" href="css/experiment.css" />
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
<body class="experiment">
<div class="wrapper">
<p class="learn">
This is a demo, <a href="http://www.paulrhayes.com/2009-07/animated-css3-cube-interface-using-3d-transforms/">learn how it works</a>.
</p>
<div id="experiment">
<div id="cube">
<div class="face one">
</div>
<div class="face two">
<h3>Next year's assistant online editor is</h3>
</div>
<div class="face three">
<h2>Vivian Zhang!</h2>
<img src="images/vivian.jpg" height="200px" width="200px" />
</div>
<div class="face four">
New forms of navigation are fun.
</div>
<div class="face five">
Rotating 3D cube
</div>
<div class="face six">
<img src="images/sonic.gif" />
</div>
</div>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="js/experiment.js"></script>
</body>
</html>