-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
107 lines (95 loc) · 3.2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<html>
<head>
<title>3D anaglyph test</title>
<link rel="stylesheet" href="style.css">
<link href='http://fonts.googleapis.com/css?family=Kavoon' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Rambla' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="example forward">
<p>This text pops forward</p>
<h1 class="forward">Inconsequential!</h1>
</div>
<div class="example backward">
<p>This text sinks backward</p>
<h1>Indefatigable!</h1>
</div>
<div class="example sinkandpop">
<p>This text should move forward and backward</p>
<h1>Effervescient!</h1>
</div>
<div class="example grow">
<p>This text should fly towards you and away</p>
<h1>Crepuscular!</h1>
</div>
<div class="example forward">
<p>This SVG pops forward</p>
<svg class="layer-cyan" width="150" height="150" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<polygon points="50,5 100,5 125,30 125,80 100,105 50,105 25,80 25,30" />
</svg>
<svg class="layer-red" width="150" height="150" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<polygon points="50,5 100,5 125,30 125,80 100,105 50,105 25,80 25,30" />
</svg>
</div>
<div class="example backward">
<p>This SVG sinks backward</p>
<svg class="layer-cyan" width="150" height="150" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<polygon points="50,5 100,5 125,30 125,80 100,105 50,105 25,80 25,30" />
</svg>
<svg class="layer-red" width="150" height="150" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<polygon points="50,5 100,5 125,30 125,80 100,105 50,105 25,80 25,30" />
</svg>
</div>
<div class="example">
<p>I really wish I knew what this looked like with glasses on</p>
<div id="cyan" class="container-layer">
<div class="container-left container">
<figure>F</figure>
<figure>I</figure>
<figure>X</figure>
<figure>F</figure>
<figure>I</figure>
<figure>X</figure>
<figure>F</figure>
<figure>I</figure>
<figure>X</figure>
</div>
<div class="container-right container">
<figure>I</figure>
<figure>E</figure>
<figure>S</figure>
<figure>I</figure>
<figure>E</figure>
<figure>S</figure>
<figure>I</figure>
<figure>E</figure>
<figure>S</figure>
</div>
</div>
<div id="red" class="container-layer">
<div class="container-left container">
<figure>F</figure>
<figure>I</figure>
<figure>X</figure>
<figure>F</figure>
<figure>I</figure>
<figure>X</figure>
<figure>F</figure>
<figure>I</figure>
<figure>X</figure>
</div>
<div class="container-right container">
<figure>I</figure>
<figure>E</figure>
<figure>S</figure>
<figure>I</figure>
<figure>E</figure>
<figure>S</figure>
<figure>I</figure>
<figure>E</figure>
<figure>S</figure>
</div>
</div>
</div>
</body>
</html>