forked from m-lab/mlab-speedtest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
225 lines (215 loc) · 11.2 KB
/
index.html
File metadata and controls
225 lines (215 loc) · 11.2 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<!DOCTYPE HTML>
<!--
Hyperspace by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html lang="en">
<head>
<title>Speed Test by Measurement Lab</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="assets/images/mlab_logo_m.ico">
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<!-- Sidebar -->
<section id="sidebar">
<div class="inner">
<nav>
<ul>
<li><a href="#intro" class="active" data-i18n>Measure</a></li>
<li><a href="#about" data-i18n>About</a></li>
<li><a href="#contact" data-i18n>Contact</a></li>
</ul>
</nav>
</div>
</section>
<!-- Wrapper -->
<div id="wrapper">
<!-- Intro -->
<section id="intro" class="wrapper style1 fullscreen">
<div class="features">
<section>
<h1 data-i18n>Test Your Speed</h1>
<p class="startIntroLabel">
<span data-i18n>M-Lab's Speed Test provides advanced diagnostics of the performance of your broadband connection through quick measurements.</span><br />
</p>
<p>
<input type="checkbox" id="privacyConsent" name="privacyConsent">
<label for="privacyConsent" style="font-size: smaller;" data-i18n data-i18n-html>I agree to the <a href="http://www.measurementlab.net/privacy/">data policy</a>, which includes retention and publication of IP addresses.</label>
</p>
<div class="row">
<div class="col-6">
<a id="startButton" class="button special startButton big disabled">
<span class="btn-begin"><span data-i18n>Begin</span> <i class="fa fa-play" aria-hidden="true"></i></span>
<span class="btn-again" style="display:none;"><span data-i18n>Again</span> <i class="fa fa-repeat" aria-hidden="true"></i></span>
<span class="btn-testing" style="display:none;"><span data-i18n>Testing</span> <i class="fa fa-circle-o-notch fa-spin" aria-hidden="true"></i></span>
</a>
</div>
<div class="col-6">
<span id="privacyMessage" data-i18n class="privacyConsentMessage">Please agree to the data policy prior to the test.</span>
</div>
</div>
<small style="font-style: italic;" data-i18n>We are temporarily running multiple tests back to back to calibrate new measurement protocols. This means results may take a little longer to appear than usual. Thank you for your help.</small><br /><br />
<small data-i18n data-i18n-html>For more on M-Lab's data collection and measurement, including the disclosure of IP addresses, see our <a href="http://www.measurementlab.net/privacy/">Privacy Policy</a>.</small>
</section>
<section id="measurementSpace">
<div id="progressSection">
<h1 style="height: 0.5em"></h1>
<div class="progress-bar">
<canvas id="activeProgress" class="progress-active" height="275" width="275"></canvas>
<div class="progress-label">
<h2 id="currentSpeed"></h2>
<h4 id="currentPhase"></h4>
</div>
</div>
</div>
<div id="resultsSection" style="display: none;">
<h1 data-i18n>Results</h1>
<table class="alt">
<tbody>
<tr>
<td></td>
<td></td>
<td>NDT <a class="fa fa-question-circle" href="https://www.measurementlab.net/tests/ndt/" target="_blank"></a></td>
<td>MSAK <a class="fa fa-question-circle" href="https://www.measurementlab.net/tests/msak/" target="_blank"></a></td>
</tr>
<tr>
<td><i class="fa fa-server" aria-hidden="true"></i></td>
<td data-i18n>Test Server</td>
<td><strong id="ndtLocation"></strong></td>
<td><strong id="msakLocation"></strong></td>
</tr>
<tr>
<td><i class="fa fa-download" aria-hidden="true"></i></td>
<td data-i18n>Download</td>
<td><strong id="s2cRate"></strong></td>
<td><strong id="msakDownload"></strong></td>
</tr>
<tr>
<td><i class="fa fa-upload" aria-hidden="true"></i></td>
<td data-i18n>Upload</td>
<td><strong id="c2sRate"></strong></td>
<td><strong id="msakUpload"></strong></td>
</tr>
<tr>
<td><i class="fa fa-hourglass-start" aria-hidden="true"></i></td>
<td data-i18n>Latency</td>
<td><strong id="latency"></strong></td>
<td><strong id="msakLatency"></strong></td>
</tr>
<tr>
<td><i class="fa fa-signal" aria-hidden="true"></i></td>
<td data-i18n>Retransmission</td>
<td><strong id="loss"></strong></td>
<td><strong id="msakLoss"></strong></td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
</section>
<!-- About -->
<section id="about" class="wrapper style3">
<div class="inner">
<h2 data-i18n>About</h2>
<p data-i18n>Measurement Lab (M-Lab) provides the largest collection of open Internet performance data on the planet. As a consortium of research, industry, and public-interest partners, M-Lab is dedicated to providing an ecosystem for the open, verifiable measurement of global network performance.</p>
<div class="features">
<section>
<span class="icon major fa-code"></span>
<h3 data-i18n>Open Source</h3>
<p data-i18n>Measurement tools are openly licensed and operated, allowing third parties to develop their own client-side measurement software and audit the source.</p>
</section>
<section>
<span class="icon major fa-users"></span>
<h3 data-i18n>Public Data</h3>
<p data-i18n>Data collected is made available to the public, allowing researchers and anyone else to build on a common pool of network measurement information.</p>
</section>
<section>
<span class="icon major fa-globe"></span>
<h3 data-i18n>Global</h3>
<p data-i18n>Distributed infrastructure and large user base provides an open, verifiable measurement platform for global network performance.</p>
</section>
<section>
<span class="icon major fa-institution"></span>
<h3 data-i18n>Trusted</h3>
<p data-i18n>Used by public organization, academic researchers, regulators and companies around the world to understand the health of the Internet.</p>
</section>
</div>
<ul class="actions">
<li><a href="http://measurementlab.net" class="button" data-i18n>Learn more</a></li>
</ul>
</div>
</section>
<!-- Contact -->
<section id="contact" class="wrapper style1">
<div class="inner">
<h2 data-i18n>Contact</h2>
<ul class="alt">
<li data-i18n>Questions or comments about M-Lab and its tools?</li>
<li data-i18n>Want to participate in M-Lab?</li>
<li data-i18n>Need to report an issue or bug?</li>
<li data-i18n>Please contact us.</li>
</ul>
<div class="">
<section>
<ul class="contact">
<li>
<h3 data-i18n>Email</h3>
<a href="mailto:support@measurementlab.net">support@measurementlab.net</a>
</li>
<li>
<h3 data-i18n>Discussion and Notification Group</h3>
<a href="https://groups.google.com/a/measurementlab.net/forum/#!forum/discuss" target="_blank" data-i18n>Join Group</a>
<i class="fa fa-link" aria-hidden="true"></i>
</li>
<li>
<h3 data-i18n>Social</h3>
<ul class="icons">
<li>
<a href="https://x.com/MeasurementLab" target="_blank" class="social-icon-link" aria-label="X">
<svg class="social-svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.746l7.73-8.835L1.254 2.25H8.08l4.253 5.622 5.911-5.622zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
</a>
</li>
<li>
<a href="https://github.com/m-lab" target="_blank" class="social-icon-link" aria-label="GitHub">
<svg class="social-svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" fill="currentColor"><path d="M12 0C5.374 0 0 5.373 0 12c0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23A11.509 11.509 0 0112 5.803c1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576C20.566 21.797 24 17.3 24 12c0-6.627-5.373-12-12-12z"/></svg>
</a>
</li>
</ul>
</li>
</ul>
</section>
</div>
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer" class="wrapper style1-alt">
<div class="inner">
<ul class="menu">
<li><a href="http://www.measurementlab.net/">Measurement Lab</a></li>
<li>Template: <a href="http://html5up.net">HTML5 UP</a></li>
<li><a href="http://www.measurementlab.net/privacy/" data-i18n>Privacy Policy</a></li>
</ul>
</div>
</footer>
<!-- Scripts -->
<script src="libraries/ndt7.js"></script>
<script src="libraries/msak.min.js"></script>
<script src="js/env.js"></script>
<script src="js/i18n.js"></script>
<script src="js/gauge.js"></script>
<script src="js/app.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WV41BWS391"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WV41BWS391');
</script>
</body>
</html>