forked from jason5ng32/MyIP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (61 loc) · 2.11 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="MyIP,IP Tool,My IP,IP check,IP lookup,DNS leak test,WebRTC test,Speed test,DNS lookup,Whois lookup, Ping test, privacy test">
<meta name="description"
content="A better and open source IP Toolbox. Easy to check what's your IPs, IP information, check for DNS leaks, examine WebRTC connections, test website availability, lookup DNS record, lookup Whois, and test latency from around the world.">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#f8f9fa">
<meta name="background-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" href="logos/ios-logo-512.png">
<title>IPCheck.ing - Check My IP Address and Geolocation - Check WebRTC Connection IP - DNS Leak Test - Speed Test - Ping/MTR Test - Jason Ng Open Source </title>
<link rel="icon" href="logos/logo.svg">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<style>
.jn-spinner {
border: 4px solid rgb(12, 144, 34);
width: 20px;
height: 20px;
border-radius: 50%;
border-left-color: transparent;
animation: spin 1s linear infinite;
}
.jn-loading {
margin-top: 30vh;
display: flex;
flex-direction: column;
align-items: center;
}
.jn-spinner-text {
margin-top: 10px;
text-align: center;
}
.jn-spinner-text p {
font-size: 14px;
color: #777;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="jn-loading" class="jn-loading">
<div class="jn-spinner "></div>
<div class="jn-spinner-text">
<p>首次加载的时间可能会较长,请等待...</p>
<p>It may take a while for the first time, please wait...</p>
</div>
</div>
<div id="app"></div>
<script type="module" src="/frontend/main.js"></script>
</body>
</html>