-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (73 loc) · 1.71 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
<!DOCTYPE HTML>
<html>
<head>
<title>动态锁屏</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<style>
body {
border: none;
background: #4d606d;
font-family: sans-serif;
}
.column {
flex-basis: 100%;
display: flex;
flex-flow: row wrap;
align-content: flex-start;
}
.item{
flex: 1 0 30%;
margin: 30px;
}
img{
width: 100%;
height: 90%;
}
h2{
color: white;
text-align: center;
}
</style>
</head>
<body>
<div class="column">
<div class="item">
<a href="imltate-bubble-screensaver1.0/bubble.html" class="image">
<img src="images/bubble1.png" alt="" />
</a>
<h2>泡泡屏保1.0</h2>
</div>
<div class="item">
<a href="imltate-bubble-screensaver2.0/bubble.html" class="image">
<img src="images/bubble2.png" alt="" />
</a>
<h2>泡泡屏保2.0</h2>
</div>
<div class="item">
<a href="ghost-countdown/ghost_countdown.html" class="image">
<img src="images/ghost-countdown.png" alt="" />
</a>
<h2>幽灵倒计时</h2>
</div>
<div class="item">
<a href="clock/clock.html" class="image">
<img src="images/clock.png" alt="" />
</a>
<h2>电子钟</h2>
</div>
<div class="item">
<a href="love/love.html" class="image">
<img src="images/love.png" alt="" />
</a>
<h2>满屏爱心</h2>
</div>
<div class="item">
<a href="looptap/looptap.html" class="image">
<img src="images/looptap.png" alt="" />
</a>
<h2>小游戏</h2>
</div>
</div>
</body>
</html>