-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
157 lines (136 loc) · 5.38 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
156
157
<!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">
<button onclick="setIframe('iphone-5-portrait-')">show iphone-5-portrait</button>
<article id="iphone-5-portrait-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 id="iphone-5-portrait-iframe" src=""></iframe>
</div>
</article>
<button onclick="setIframe('iphone-5-landscape-')">show iphone-5-portrait</button>
<article id="iphone-5-landscape-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 id="iphone-5-landscape-iframe" src=""></iframe>
</div>
</article>
<button onclick="setIframe('iphone-6-portrait-')">show iphone-6-portrait</button>
<article id="iphone-6-portrait-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 id="iphone-6-portrait-iframe" src=""></iframe>
</div>
</article>
<button onclick="setIframe('iphone-6-landscape-')">show iphone-6-landscape</button>
<article id="iphone-6-landscape-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 id="iphone-6-landscape-iframe" src=""></iframe>
</div>
</article>
<button onclick="setIframe('iphone-6-plus-portrait-')">show iphone-6-plus-portrait</button>
<article id="iphone-6-plus-portrait-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 id="iphone-6-plus-portrait-iframe" src=""></iframe>
</div>
</article>
<button onclick="setIframe('iphone-6-plus-landscape-')">show iphone-6-plus-landscape</button>
<article id="iphone-6-plus-landscape-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 id="iphone-6-plus-landscape-iframe" src=""></iframe>
</div>
</article>
<button onclick="setIframe('nexus-4-portrait-')">show nexus-4-portrait</button>
<article id="nexus-4-portrait-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 id="nexus-4-portrait-iframe" src=""></iframe>
</div>
</article>
<button onclick="setIframe('nexus-4-landscape-')">show nexus-4-landscape</button>
<article id="nexus-4-landscape-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 id="nexus-4-landscape-iframe" src=""></iframe>
</div>
</article>
<button onclick="setIframe('ipad-portrait-')">show ipad-portrait</button>
<article id="ipad-portrait-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 id="ipad-portrait-iframe" src=""></iframe>
</div>
</article>
<button onclick="setIframe('ipad-landscape-')">show ipad-landscape</button>
<article id="ipad-landscape-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 id="ipad-landscape-iframe" src=""></iframe>
</div>
</article>
<button onclick="setIframe('macbook-15-')">show macbook-15</button>
<article id="macbook-15-article" class="macbook-15" >
<p>Apple MacBook Pro 15-inch (Hi-Res screen)</p>
<div class="device">
<div class="flashingTop">
<span class="time">10:29 AM</span>
</div>
<iframe id="macbook-15-iframe" src=""></iframe>
</div>
</article>
</section>
<footer>
</footer>
<script src="js/app/main.js"></script>
<script>
</script>
</body>
</html>