forked from TulvL/cloudflare-ip-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (58 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="Cloudflare IP Test Tool including HTTP respond time and download speed">
<title>Cloudflare IP Batch Test Tool</title>
<link href="https://unpkg.com/[email protected]/dist/css/tabulator_site.min.css" rel="stylesheet">
<link href="/style.css" rel="stylesheet">
<script type="text/javascript" src="https://unpkg.com/[email protected]/dist/jquery.js"></script>
<script type="text/javascript" src="https://unpkg.com/[email protected]/dist/js/tabulator.min.js"></script>
</head>
<body>
<h1>Cloudflare IP Batch Test Tool</h1>
<div class="table panel">
<div class="line">
<div class="col">
<button class="button big" id="select-all" status=0>Select All</button>
<div class="line">
<input id="select-number" class="border" type="number" value="20" min="1" max="100"></input>
<button class="button" id="select-random"> Random </button>
</div>
</div>
<div class="col">
<button class="button big" id="test-respond" status=0>Test Respond</button>
<div class="line">
<select id="img-select" class="border">
<option value="0">115KB</option>
<option value="1" selected="selected">1.20MB</option>
<option value="2">10.4MB</option>
</select>
<button class="button" id="test-speed" status=0> Speed </button>
</div>
</div>
</div>
</div>
<div id="main-table"></div>
<div class="panel bottom">
<div class="button" id="download" status=0>Data Sheet</div>
</div>
<p>First Respond of every IP may be relatively slow</p>
<p>You can use Shift + Drag to choose a range quickly (in some browser)</p>
<p>If testing too frequently, you may be blocked by the firewall of your ISP or Cloudflare</p>
<p>It is not clear about the test consistency between browser and local software</p>
<p>Visit with either http or https may cause difference in results</p>
<p>Want More IP? Visit <a href="/whole"> here </a> (only support http)</p>
<p>Feedback via <a href="https://github.com/TulvL/cloudflare-ip-tester">Github</a> is welcome</p>
<p>IE browser is not supported</p>
<br />
<p><a href="https://flares.cloud/">HOME</a></p>
<br />
<br />
<script type="text/javascript" src="/script.js"></script>
<script>
$.get("./ip_list.csv", tablemake)
</script>
</body>
</html>