-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (88 loc) · 4.54 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>detect: Browser Diagnostics</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico and apple-touch-icon(s) in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/barekit.css">
<link rel="stylesheet" href="css/app.css">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,700,500,900' rel='stylesheet' type='text/css'>
<script src="js/vendor/modernizr-2.8.3.custom.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<header class="row primary-header">
<div class="sm-12 md-12 lg-12">detect: Browser Diagnostics</div>
</header>
<div class="row">
<div class="wrapper">
<div class="sm-6 md-4 lg-3 has-gutter results-wrapper">
<h4 class="stat-label">Reported Resolution</h4>
<div class="results js-reported-resolution"></div>
</div>
<div class="sm-6 md-4 lg-3 has-gutter results-wrapper">
<h4 class="stat-label">Actual Resolution</h4>
<div class="results js-actual-resolution"></div>
</div>
<div class="sm-6 md-4 lg-3 has-gutter results-wrapper">
<h4 class="stat-label">Device Pixel Ratio (DPPX)</h4>
<div class="results js-dpr"></div>
</div>
<div class="sm-6 md-4 lg-3 has-gutter results-wrapper">
<h4 class="stat-label">Mobile/Tablet</h4>
<div class="results js-is-mobile"></div>
</div>
<div class="sm-6 md-4 lg-3 has-gutter results-wrapper">
<h4 class="stat-label">Form Factor</h4>
<div class="results js-form-factor"></div>
</div>
<div class="sm-6 md-4 lg-3 has-gutter results-wrapper">
<h4 class="stat-label">Orientation</h4>
<div class="results js-orientation">
<span class="landscape">Landscape</span>
<span class="portrait">Portrait</span>
</div>
</div>
<div class="sm-12 md-12 lg-6 has-gutter results-wrapper">
<h4 class="stat-label">Device Name</h4>
<div class="results js-device-name"></div>
</div>
<div class="sm-12 md-12 lg-12 has-gutter results-wrapper">
<h4 class="stat-label">User Agent</h4>
<div class="results js-user-agent"></div>
</div>
<div class="sm-12 md-12 lg-12 has-gutter results-wrapper">
<h4 class="stat-label">Viewport</h4>
<div class="results js-viewport-details"></div>
</div>
</div>
</div>
<footer class="row footer">
<div class="sm-12 md-12 lg-12 has-gutter centered">
Made for developers.
<a href="https://github.com/groovc/detect">https://github.com/groovc/detect</a>
</div>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.1.min.js"><\/script>')</script>
<script src="js/barekit.min.js"></script>
<script src="//wurfl.io/wurfl.js"></script>
<script src="js/app.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X','auto');ga('send','pageview');
</script>
</body>
</html>