-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
155 lines (136 loc) · 4.47 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
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
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>NOT The Real Responsinator</title>
<link rel="shortcut icon" href="data:;base64,iVBORw0KGgo=">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<form>
<input id="url" type="text" value="">
<input id="go" type="submit" value="GO">
</form>
</header>
<section id="devices">
<article class="iphone-5-portrait">
<p>iPhone 5 portrait · width: 320px</p>
<div class="device">
<div class="flashingTop">
<span class="time">10:29 AM</span>
</div>
<iframe src=""></iframe>
</div>
</article>
<article class="iphone-5-landscape">
<p>iPhone 5 landscape · width: 568px</p>
<div class="device">
<div class="flashingTop">
<span class="time">10:29 AM</span>
</div>
<iframe src=""></iframe>
</div>
</article>
<article class="iphone-6-portrait">
<p>iPhone 6 portrait · width: 375px</p>
<div class="device">
<div class="flashingTop">
<span class="time">10:29 AM</span>
</div>
<iframe src=""></iframe>
</div>
</article>
<article class="iphone-6-landscape">
<p>iPhone 6 landscape · width: 667px</p>
<div class="device">
<div class="flashingTop">
<span class="time">10:29 AM</span>
</div>
<iframe src=""></iframe>
</div>
</article>
<article class="iphone-6-plus-portrait">
<p>iPhone 6+ portrait · width: 414px</p>
<div class="device">
<div class="flashingTop">
<span class="time">10:29 AM</span>
</div>
<iframe src=""></iframe>
</div>
</article>
<article class="iphone-6-plus-landscape">
<p>iPhone 6+ landscape · width: 736px</p>
<div class="device">
<div class="flashingTop">
<span class="time">10:29 AM</span>
</div>
<iframe src=""></iframe>
</div>
</article>
<article class="nexus-4-portrait">
<p>Nexus 4 portrait · width: 384px</p>
<div class="device">
<div class="flashingTop">
<span class="time">10:29 AM</span>
</div>
<iframe src=""></iframe>
</div>
</article>
<article class="nexus-4-landscape">
<p>Nexus 4 landscape · width: 600px</p>
<div class="device">
<div class="flashingTop">
<span class="time">10:29 AM</span>
</div>
<iframe src=""></iframe>
</div>
</article>
<article class="ipad-portrait">
<p>iPad portrait · width: 768px</p>
<div class="device">
<div class="flashingTop">
<span class="time">10:29 AM</span>
</div>
<iframe src=""></iframe>
</div>
</article>
<article class="ipad-landscape">
<p>iPad landscape · width: 1024px</p>
<div class="device">
<div class="flashingTop">
<span class="time">10:29 AM</span>
</div>
<iframe src=""></iframe>
</div>
</article>
</section>
<footer>
The real <a href="https://www.responsinator.com/">Responsinator</a> is
designed by <a href="https://twitter.com/andyhovey">@andyhovey</a> and
<a href="https://twitter.com/tamapugsley">@tamapugsley</a> to test
responsive websites on different device resolutions
</footer>
<script>
var hash = window.location.hash
, url = document.getElementById("url")
, go = document.getElementById("go")
, form = document.forms[0]
, iframes = document.querySelectorAll("iframe");
if (hash) url.value = hash.substr(1);
form.addEventListener("submit", function(e) {
e.preventDefault();
var src = url.value.trim();
window.location.hash = "#" + src;
if (src.search(/\\/i) !== -1)
src = ("file:///" + src).replace(/\\/gi, "/");
[].forEach.call(iframes, function (iframe) {
iframe.src = src;
});
});
go.click();
</script>
</body>
</html>