-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (95 loc) · 3.07 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>Jink的主页</title>
<meta name="keywords" content="Jink个人主页">
<meta name="description" content="Jink --- 一个努力奋斗中的IT民工">
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>(function () { self !== parent && (location.href = "about:blank") })();</script>
<link href="./static/layui/css/layui.css" rel="stylesheet">
<script src="./static/js/jquery.js"></script>
<link href="./static/css/css.css" rel="stylesheet">
<script src="./static/js/index.js"></script>
</head>
<body>
<div class="header layui-header">
<div class="layui-container">
<div class="logo">
<img src="./static/images/logo.png" alt="" srcset="">
</div>
<div class="header-time"></div>
</div>
</div>
<div class="content">
<div class="title">
<h1>Jink</h1>
<h2>
Hello World !!!
<br>存活于互联网的边缘
</h2>
</div>
<div class="menu">
<a href="./tvbox/config.json" target="_blank" class="layui-btn layui-btn-lg layui-bg-primary">Tvbox接口</a>
<a href="./tvbox/yingshitv.apk" class="layui-btn layui-btn-lg layui-btn-primary layui-border-green" target="_blank">影视电视版下载</a>
<a href="./tvbox/yingshimobile.apk" class="layui-btn layui-btn-lg layui-btn-primary layui-border-green" target="_blank">影视手机版下载</a>
</div>
<div class="daily">
<p id="poem">
叙别梦、扬州一觉。
</p>
<p id="info">
【宋代】吴文英《夜游宫·人去西楼雁杳》
</p>
</div>
</div>
<div class="footer layui-footer">
<p>
Copyright © 2023 <a href="/">Jink</a> All rights reserved</p>
<p>
<span>
联系:
<a href="https://github.com/jink92" target="_blank" sponsor="iconfont" style="color: #9B16FF; margin-right: 10px;">
<strong>Github</strong>
</a>
<a href="mailto:[email protected]" target="_blank" sponsor="upyun" style="color: #23A7E8;margin-right: 10px;">
<strong>邮箱</strong>
</a>
<a href="https://res.abeim.cn/api/qq/?qq=632186662" target="_blank" sponsor="Gitee" style="color:#C71D23;">
<strong>QQ</strong>
</a>
</span>
</p>
</div>
<script src="./static/layui/layui.js"></script>
<script
type="text/javascript"
color="22,186,170"
pointColor="22,186,170"
opacity="1"
zIndex="2"
count="120"
src="./static/js/canvas-nest.js"
></script>
<!--End-->
<script>
fetch('https://v1.hitokoto.cn')
.then(function (res){
return res.json();
})
.then(function (data) {
var hitokoto = document.getElementById('hitokoto');
poem.innerText = data.hitokoto;
var from= document.getElementById('from');
info.innerText = "From:"+data.from;
})
.catch(function (err) {
console.error(err);
})
</script>
<script>
setInterval(nowtime,1000)
</script>
</body>
</html>