-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·45 lines (45 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Zui</title>
<link rel="stylesheet" href="zui-core/zui.css" charset="utf-8">
<script type="text/javascript" src="zui-core/zui.js" async></script>
</head>
<body>
<div class="zui">
<div class="inner-zui">
<div class="top">
<div class="title">Zui</div>
<div class="up"></div>
</div>
<div class="bottom-wrapper">
<div class="left">
<h1>Welcome</h1>
<p>Zui is a prototype for a <a href="https://en.wikipedia.org/wiki/Zooming_user_interface">Zooming User Interface</a>.</p>
<p>The idea for for a (theoretically) infinitely nested set of "Zuis" that function as a dashboard.</p>
<p>I'm using <a href="https://github.com/chrisnewtn/zui">the project</a> as a testing ground to try out ideas regarding iframes, modularization, events, CSS; a whole bunch of stuff basically. 😄</p>
</div>
<div class="right">
<div class="sub-zui">
<iframe src="zuis/steam.html" allowTransparency="true"></iframe>
<div class="cover"></div>
</div>
<div class="sub-zui">
<iframe src="zuis/transmission.html"></iframe>
<div class="cover"></div>
</div>
<div class="sub-zui">
<iframe src="zuis/news.html"></iframe>
<div class="cover"></div>
</div>
<div class="sub-zui">
<iframe src="zuis/game-offers.html"></iframe>
<div class="cover"></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>