-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (59 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Love</title>
<link rel="icon" href="static/love.ico">
<link href="css/style.css" rel="stylesheet">
<link href="css/nav.css" rel="stylesheet">
<link href="css/card.css" rel="stylesheet">
<link href="css/page.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
</head>
<body>
<div class="nav frosted-glass"></div>
<div class="card frosted-glass">
<div class="head-img">
<div class="img-l"></div>
<div class="name">小冷</div>
</div>
<div class="heart">
<div class="ani"></div>
<div class="ani"></div>
</div>
<div class="head-img">
<div class="img-y"></div>
<div class="name">允允</div>
</div>
</div>
<div class="hero_area">
<svg class="waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 24 150 28" preserveAspectRatio="none" shape-rendering="auto">
<defs>
<path id="gentle-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z" />
</defs>
<g class="parallax">
<use xlink:href="#gentle-wave" x="48" y="0" fill="rgba(255,255,255,0.7" />
<use xlink:href="#gentle-wave" x="48" y="3" fill="rgba(255,255,255,0.5)" />
<use xlink:href="#gentle-wave" x="48" y="5" fill="rgba(255,255,255,0.3)" />
<use xlink:href="#gentle-wave" x="48" y="7" fill="#fff" />
</g>
</svg>
</div>
<div class="page">
<div class="time">
<div class="title">
这是我们一起走过的
</div>
<div id="time"></div>
</div>
<div class="jump">
<a href="./pages/clover.html">情书</a>
<a href="./pages/story.html">故事</a>
</div>
</div>
<script type="module" src="./scripts/nav.js"></script>
<script type="module" src="./scripts/time.js"></script>
</body>
</html>