-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (54 loc) · 2.91 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>洛云凌钰工作室</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="logo.png" type="image/png">
</head>
<body>
<div class="container">
<h1>洛云凌钰工作室</h1>
<div class="web_notice" style="position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3); z-index: 99999;">
<div style="position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); max-width: 90%; background: #FFF; border-radius: 40px; padding: 50px 40px;">
<h3 style="font-weight: bold; text-align: center; font-size: 30px;">网站通知</h3>
<div style="font-size: 16px; margin-top: 26px; line-height: 30px; color: #999;">
我们的网站依然活跃
</div>
<a href="#" style="display: block; background: #66ccff; color: #FFF; text-align: center; font-weight: bold; font-size: 19px; line-height: 60px; margin: 0 auto; margin-top: 45px; border-radius: 32px; width: 80%;" onclick="javascript:document.querySelector('.web_notice').remove()">知晓</a>
</div>
</div>
<h3 id="hitokoto">加载中...</h3>
<script>
fetch('https://v1.hitokoto.cn/', {
headers: {
'Accept': 'application/json'
}
})
.then(response => response.json())
.then(data => {
const hitokoto = data.hitokoto;
document.getElementById('hitokoto').textContent = hitokoto;
})
.catch(error => {
console.error('获取一言API出错:', error);
document.getElementById('hitokoto').textContent = '获取失败';
});
</script>
<h2>关于我们</h2>
<p>我们是一个充满激情与创造力的工作室,虽然不完美,但欢迎各种合作。本工作室提供一些软件下载服务,请在下载前仔细阅读并同意免责声明,任何问题与本站无关。</p>
<a href="mianze.html">免责声明</a>
<h2>软件下载站</h2>
<p>下载本站内容时,请仔细查看免责声明</p>
<a href="ruanjian.html">软件下载站</a>
<h2>联系我们</h2>
<P>如想联系我们,你可以发邮件至[email protected],看到后将尽快联系</P>
<img src="https://tool.lu/netcard/">
<footer>
<body>
<p>© 2024 洛云凌钰工作室 | 友情链接<a href="https://xiaozhangkeji.sblkun.eu.org/">小张科技</a></p>
</footer>
</div>
</body>
</html>