-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (95 loc) · 5.44 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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/favicon.ico">
<title>Master</title>
<script src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/js/jquery-3.7.0.min.js"></script>
<link rel="stylesheet" href="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/css/customize.css">
<style>
div#outer{
background-image: url("https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/background/110564615_p0.jpg");
}
</style>
</head>
<body>
<div id="outer">
<div id="inner">
<!--跳动文字-->
<div id="container">
<div>
<p id="header"></p>
</div>
</div>
<!--搜索框-->
<div id="search">
<div>
<label for="baidu-search"></label><input id="baidu-search" type="text" value="" onkeypress="search()">
</div>
</div>
<!--应用-->
<div id="loader">
<div>
<table id="loader-table" cellspacing="15px" cellpadding="5px" align="center" valign="middle">
<tr>
<th><a href = "http://192.168.31.20:5080/" target="_blank"><img src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/logo/Photos.png" alt="Photos"><p>Photos</p></a></th>
<th><a href = "http://192.168.31.20:8096/" target="_blank"><img src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/logo/emby.svg" alt="Emby"><p>Emby</p></a></th>
<th><a href = "http://192.168.31.20:8097/" target="_blank"><img src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/logo/jellyfin.svg" alt="jellyfin"><p>jellyfin</p></a></th>
<th><a href = "https://192.168.31.2/" target="_blank"><img src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/logo/vmware.svg" alt="Esxi"><p>Esxi</p></a></th>
<th><a href = "http://192.168.31.20:5000/" target="_blank"><img src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/logo/DiskStation.png" alt="DiskStation"><p>DiskStation</p></a></th>
<th><a href = "https://github.com/" target="_blank"><img src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/logo/github.svg" alt="GitHub"><p>GitHub</p></a></th>
<th><a href = "https://inftab.com/" target="_blank"><img src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/logo/Infinity.webp" alt="Infinity"><p>Infinity</p></a></th>
</tr>
<tr>
<th><a href = "http://192.168.31.25:8080/" target="_blank"><img src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/logo/qbittorrent-tray.svg" alt="qBittorrent"><p>qBittorrent</p></a></th>
<th><a href = "http://192.168.31.3:9090/ui/dashboard/#/proxies?host=192.168.31.3&port=9090&secret=123456" target="_blank"><img src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/logo/Clash.webp" alt="Clash"><p>Clash</p></a></th>
<th><a href = "http://192.168.31.20:4533/" target="_blank"><img src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/logo/navidrome.svg" alt="Navidrome"><p>Navidrome</p></a></th>
<th><a href = "http://192.168.31.30:8123/" target="_blank"><img src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/logo/home-assistant-alt.svg" alt="home-assistant"><p>HomeAssistant</p></a></th>
<th><a href = "http://192.168.31.20:3003/" target="_blank"><img src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/logo/Nas-tool.png" alt="nas-tool"><p>NAS-Tool</p></a></th>
<th><a href = "http://192.168.31.1/" target="_blank"><img src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/logo/ikuai.png" alt="iKuai"><p>iKuai</p></a></th>
<th><a href = "http://192.168.31.3/cgi-bin/luci/" target="_blank"><img src="https://mozi71-loader.oss-cn-shanghai.aliyuncs.com/static/logo/OpenWrt.webp" alt="OpenWrt"><p>OpenWrt</p></a></th>
</tr>
</table>
</div>
</div>
</div>
</div>
</body>
</html>
<script>
<!--字符跳动-->
let flag = 0;
$(document).ready(
function(){
const arr = ["あ", "な", "た", "が", "一", "番", "好", "き", "で", "す","!"];
setInterval(function(){
let str = "";
for(let i = 0; i < flag; i++){
str += arr[i];
}
if (flag <= 11){
$("p#header").html(str);
flag++;
}
},400);
}
);
<!--baidu搜索函数-->
function search(){
const info = document.getElementById("baidu-search").value;
if (window.event.keyCode === 13 || event.which ===13) {
if (info !== ""){
const url="https://www.baidu.com/s?wd=" + info;
window.open(url)
}
}}
<!--google搜索函数-->
function google_search(){
const info = document.getElementById("google-search").value;
if (window.event.keyCode === 13) {
if (info !== ""){
const url="https://www.google.com/search?q=" + info;
window.open(url)
}
}}
</script>