-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
57 lines (47 loc) · 923 Bytes
/
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
<!DOCTYPE HTML>
<html lang="en-US" class="initial_bg">
<head>
<meta charset="UTF-8">
<meta name="Viewport"
content="width=device-width; height=device-height; user-scaleable=no; initial-scale=1.0" />
<meta name="apple-touch-fullscreen" content="YES" />
<title>PenJS 示例</title>
<style type="text/css">
html {
background-color: #DDDDFF;
}
body {
font-size: larger;
}
.title {
text-align: center;
color: #60b044;
}
.c {
width: 10em;
margin: 0 auto;
}
#list {
}
#list li {
line-height: 2em;
}
#footer {
font-size: smaller;
display: inline-block;
position: absolute;
right: 10px;
bottom: 20px;
}
</style>
</head>
<div class="c">
<h2 class="title">PenJS 示例</h2>
<ol id="list">
<li><a href="demo/bird">Flappy Bird</a></li>
<li><a href="demo/xiaoqiang">一起打小强</a></li>
</ol>
<span id="footer">Powered by <a
href="https://github.com/manxisuo/PenJS">PenJS</a> </span>
</div>
</html>