-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (73 loc) · 3.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Test sizes of your HTML5 banners</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<link rel="stylesheet" href="checker.css"/>
</head>
<header>
<h1>Responsive Ad Checker</h1>
<ol>
<li>Use this page to check HTML5 banner ads at multiple sizes.</li>
<li>Adjust the size of your browser window to see how the flexible banners respond.</li>
<li>Read the article <a href="http://matthewjamestaylor.com/blog/responsive-banner-ads">Responsive Banner Ads
with HTML5 and CSS3</a> for more information.
</li>
<li><a href="#diagonalCircle">circle transition</a>, <a href="#slideInLogo">sliding logo only</a>
</li>
</ol>
<h1>Remember to disable your ad blocker!</h1>
</header>
<div id="responsive">
<section id="static">
<h1 id="diagonalCircle">Circle transition diagonally</h1>
<p>A bigger circle will slide diagonally over the advertisement <a href="#">Go back.</a></p>
<h2>300 x 50</h2>
<iframe src="circle/ad.html" border="0" scrolling="no" allowtransparency="true" width="300"
height="50"
style="border:0;"></iframe>
<h2>728 x 90</h2>
<iframe src="circle/ad.html" border="0" scrolling="no" allowtransparency="true" width="728"
height="90"
style="border:0;"></iframe>
<h2>250 x 250</h2>
<iframe src="circle/ad.html" border="0" scrolling="no" allowtransparency="true" width="250"
height="250"
style="border:0;"></iframe>
<h2>300 x 250</h2>
<iframe src="circle/ad.html" border="0" scrolling="no" allowtransparency="true" width="300"
height="250"
style="border:0;"></iframe>
<h2>160 x 600</h2>
<iframe src="circle/ad.html" border="0" scrolling="no" allowtransparency="true" width="160"
height="600"
style="border:0;"></iframe>
<h1 id="slideInLogo">Sliding the logo in by itself</h1>
<p>Step by step transition, have a look at the main sizes <a href="#">Go back.</a></p>
<h2>300 x 50</h2>
<iframe src="slideIn/ad.html" border="0" scrolling="no" allowtransparency="true" width="300"
height="50"
style="border:0;"></iframe>
<h2>728 x 90</h2>
<iframe src="slideIn/ad.html" border="0" scrolling="no" allowtransparency="true" width="728"
height="90"
style="border:0;"></iframe>
<h2>250 x 250</h2>
<iframe src="slideIn/ad.html" border="0" scrolling="no" allowtransparency="true" width="250"
height="250"
style="border:0;"></iframe>
<h2>300 x 250</h2>
<iframe src="slideIn/ad.html" border="0" scrolling="no" allowtransparency="true" width="300"
height="250"
style="border:0;"></iframe>
<h2>160 x 600</h2>
<iframe src="slideIn/ad.html" border="0" scrolling="no" allowtransparency="true" width="160"
height="600"
style="border:0;"></iframe>
</section>
</div>
<footer>
<p>Forked <a href="http://matthewjamestaylor.com">from this guide.</a></p>
</footer>
</html>