-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
63 lines (56 loc) · 2.65 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>4G Throughput Calculator</title>
<meta content="width=device-width, initial-scale=1, maximum-scale=1" name="viewport" />
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="#1a1a1a" name="theme-color">
<meta http-equiv="content-type" content="text/html; charset=UTF-16">
<meta property="og:title" content="4G Theoretical Throughput Calculator" />
<meta property="og:image" content="4g-192.png" />
<meta property="og:description" content="Calculate the maxium theoretical throughput of a specified LTE Configuration. Supports TDD, FDD and SDL, Carrier aggregation and MIMO" />
<meta name="keywords" content="4g, throughput, calculator, theoretical, tdd, fdd, sdl, resource block, mbps, lte, special subframe, configuration" />
<!-- Enable PWA ability on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="4G Speeds">
<link rel="manifest" href="manifest.json">
<link rel="icon" href="4g-128.png" type="image/x-icon" sizes="128x128" />
<link rel="apple-touch-icon" href="4g-128.png" sizes="128x128" />
<link rel="stylesheet" href="style.css?TheOneWithTheSettings" type="text/css" media="all" />
<!--[if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script><![endif]--><!--[if gte IE 9]><!--><script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script><!--<![endif]-->
</head>
<body>
<!--
4G Throughput Calculator
GitHub: https://github.com/jake-cryptic/4g-speed/
Website: https://absolutedouble.co.uk/
Sources:
https://the8layers.com/2016/12/01/calculate-the-maximum-throughput-of-td-lte/
http://niviuk.free.fr/lte_tdd.php
http://niviuk.free.fr/lte_bandwidth.php
-->
<div id="title_bar">
<h1 id="page_title">Loading...</h1>
<span id="open_settings">⚙</span>
</div>
<div id="main">
<div id="speeds"></div>
<div id="carriers">
<div id="ca_headers">
<div class="ca_header">Band</div>
<div class="ca_header">Config</div>
<div class="ca_header">Bandwidth</div>
<div class="ca_header">Modulation</div>
<div class="ca_header">MiMo</div>
<div class="ca_header">Options</div>
</div>
<div id="ca_body">Loading..</div>
</div>
<div id="add_carrier"></div>
</div>
<div id="settings"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-cookie/2.2.0/js.cookie.min.js"></script>
<script src="app.js?TheOneWithTheSettings" type="text/javascript"></script>
</body>
</html>