-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (45 loc) · 3.97 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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.1/normalize.min.css">
<style>
#wrap{
width:100%;
max-width:1200px;
margin:0 auto;
}
.img{
text-align: center;
border:1px solid black;
}
</style>
</head>
<body>
<div id="wrap">
<h1>Storify tests</h1>
<h4>Notes</h4>
<ul>
<li>Story template full header has share/embed icons.</li>
<li>Story template mini header has "View as slideshow" option.</li>
<li>Grid template only displays elements that have media (photo or video).</li>
<li>Storify div must have something beneath it or else it will go to the full height of content as if it were in story template. See slideshow mini, height: 9626px. For slideshow that is not good. For story template that's not bad.</li>
</ul>
<hr>
<h2>Story template with full header</h2>
<div class="storify"><iframe src="//storify.com/registerguard/fire-in-spencer-butte-area/embed?border=false" width="100%" height=750 frameborder=no allowtransparency=true></iframe><script src="//storify.com/registerguard/fire-in-spencer-butte-area.js?border=false"></script><noscript>[<a href="//storify.com/registerguard/fire-in-spencer-butte-area" target="_blank">View the story "Fox Hollow Road fire" on Storify</a>]</noscript></div>
<hr>
<h2>Story template with mini header</h2>
<div class="storify"><iframe src="//storify.com/registerguard/fire-in-spencer-butte-area/embed?header=false&border=false" width="100%" height=750 frameborder=no allowtransparency=true></iframe><script src="//storify.com/registerguard/fire-in-spencer-butte-area.js?header=false&border=false"></script><noscript>[<a href="//storify.com/registerguard/fire-in-spencer-butte-area" target="_blank">View the story "Fox Hollow Road fire" on Storify</a>]</noscript></div>
<hr>
<h2>Grid template with full header</h2>
<div class="storify"><iframe src="//storify.com/registerguard/fire-in-spencer-butte-area/embed?border=false&template=grid" width="100%" height=750 frameborder=no allowtransparency=true></iframe><script src="//storify.com/registerguard/fire-in-spencer-butte-area.js?border=false&template=grid"></script><noscript>[<a href="//storify.com/registerguard/fire-in-spencer-butte-area" target="_blank">View the story "Fox Hollow Road fire" on Storify</a>]</noscript></div>
<hr>
<h2>Grid template with mini header</h2>
<div class="storify"><iframe src="//storify.com/registerguard/fire-in-spencer-butte-area/embed?header=false&border=false&template=grid" width="100%" height=750 frameborder=no allowtransparency=true></iframe><script src="//storify.com/registerguard/fire-in-spencer-butte-area.js?header=false&border=false&template=grid"></script><noscript>[<a href="//storify.com/registerguard/fire-in-spencer-butte-area" target="_blank">View the story "Fox Hollow Road fire" on Storify</a>]</noscript></div>
<hr>
<h2>Slideshow template with full header</h2>
<div class="storify"><iframe src="//storify.com/registerguard/fire-in-spencer-butte-area/embed?border=false&template=slideshow" width="100%" height=750 frameborder=no allowtransparency=true></iframe><script src="//storify.com/registerguard/fire-in-spencer-butte-area.js?border=false&template=slideshow"></script><noscript>[<a href="//storify.com/registerguard/fire-in-spencer-butte-area" target="_blank">View the story "Fox Hollow Road fire" on Storify</a>]</noscript></div>
<hr>
<h2>Slideshow template with mini header</h2>
<div class="storify"><iframe src="//storify.com/registerguard/fire-in-spencer-butte-area/embed?header=false&border=false&template=slideshow" width="100%" height=750 frameborder=no allowtransparency=true></iframe><script src="//storify.com/registerguard/fire-in-spencer-butte-area.js?header=false&border=false&template=slideshow"></script><noscript>[<a href="//storify.com/registerguard/fire-in-spencer-butte-area" target="_blank">View the story "Fox Hollow Road fire" on Storify</a>]</noscript></div>
</div>
</body>