forked from bryanbraun/after-dark-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
229 lines (219 loc) · 7.08 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>After Dark in CSS</title>
<link rel="shortcut icon" href="img/favicon.png" />
<link rel="stylesheet" href="all/base.css">
<style>
html,
body {
background-color: #929292;
}
a {
color: black;
}
.content {
position: relative;
z-index: 2;
width: 260px;
margin: 100px auto 0;
border: 1px solid #111;
background: #fff;
box-shadow: 1px 1px #111;
}
.title {
text-align: center;
font-size: 12px;
font-weight: normal;
padding: 1px 0;
margin: 1px 0 0 0;
border-bottom: 1px solid #111;
background-color: #f0f0f0;
box-shadow: inset 1px -3px 0px -2px #a8a9b6;
}
.title:before {
height: 11px;
width: 64px;
display: inline-block;
content: "";
background: url(img/lines.png) repeat;
margin-right: 8px;
}
.title:after {
height: 11px;
width: 64px;
display: inline-block;
content: "";
background: url(img/lines.png) repeat;
margin-left: 8px;
}
.content .ad {
text-align: center;
margin: 1em 0;
}
.content ul {
list-style-type: none;
margin: 2px 0 2em 0;
padding: 0 0 0 2em;
font-size: 12px;
}
.footer {
width: 400px;
text-align: center;
margin: 2em auto 0;
font-size: 12px;
}
.closebox {
position: absolute;
top: 3px;
left: 10px;
padding: 1px;
background-color: #d1d2e3;
border-top: 1px solid #38394a;
border-left: 1px solid #38394a;
box-shadow: 0 0 0px 1px #f0f0f0;
}
.closebox-innr {
display: block;
height: 8px;
width: 8px;
background-color: #a2a5ae;
border-bottom: 1px solid #38394a;
border-right: 1px solid #38394a;
text-indent: -99999em;
}
.closebox-innr:hover {
background-color: #ccc;
}
.maxbox {
position: absolute;
top: 3px;
right: 10px;
padding: 1px;
background-color: #d1d2e3;
border-top: 1px solid #38394a;
border-left: 1px solid #38394a;
box-shadow: 0 0 0px 1px #f0f0f0;
}
.maxbox-innr {
height: 8px;
width: 8px;
background-color: #a2a5ae;
border-bottom: 1px solid #38394a;
border-right: 1px solid #38394a;
}
.maxbox-innr:before {
height: 5px;
width: 5px;
border-bottom: 1px solid #38394a;
border-right: 1px solid #38394a;
background-color: #a2a4ae;
display: block;
content: "";
}
/* Hidden Toaster */
.behind {
position: absolute;
left: 50%;
top: 200px;
z-index: 1;
margin-left: -50px;
width: 100px;
font-size: 12px;
text-align: center;
}
.toaster {
width: 64px;
height: 64px;
margin: 0 auto 2em;
background-image: url("img/toaster-sprite.gif");
-webkit-animation: flap .2s steps(4) infinite alternate;
-moz-animation: flap .2s steps(4) infinite alternate;
-o-animation: flap .2s steps(4) infinite alternate;
animation: flap .2s steps(4) infinite alternate;
}
/* Flapping animation */
@-webkit-keyframes flap {
from { background-position: 0px; }
to { background-position: -256px; }
}
@-moz-keyframes flap {
from { background-position: 0px; }
to { background-position: -256px; }
}
@-ms-keyframes flap {
from { background-position: 0px; }
to { background-position: -256px; }
}
@-o-keyframes flap {
from { background-position: 0px; }
to { background-position: -256px; }
}
@keyframes flap {
from { background-position: 0px; }
to { background-position: -256px; }
}
</style>
<script>
/* The Randomizer Script -- goes to a random screensaver */
window.onload = function () {
/* Set click events */
var elem = document.getElementById('randomizer');
elem.onclick = random;
var x = document.getElementById('x');
x.onclick = close;
function random() {
/* Build a list of href's */
var choices = Array();
var elements = document.querySelectorAll('.s');
Array.prototype.forEach.call(elements, function(el, i){
choices.push(el.getAttribute('href'));
});
/* Count our choices */
count = choices.length;
/* Pick a screenshot at random and browse there */
choice = Math.floor(Math.random() * count);
window.location.href = choices[choice];
}
function close() {
var el = document.getElementById('content');
el.style.visibility = 'hidden';
return false;
}
}
</script>
</head>
<body>
<a href="https://github.com/bryanbraun/after-dark-css"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://github-camo.global.ssl.fastly.net/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png"></a>
<div id="content" class="content">
<div class="closebox"><a class="closebox-innr" id="x" href="#">Close</a></div>
<div class="maxbox"><div class="maxbox-innr"></div></div>
<h1 class="title">After Dark in CSS</h1>
<div class="ad"><img src="img/after-dark-icon.png" /></div>
<ul>
<li><a class="s" href="all/flying-toasters.html">Flying Toasters</a></li>
<li><a class="s" href="all/fish.html">Fish</a></li>
<li><a class="s" href="all/globe.html">Globe</a></li>
<li><a href="all/hard-rain.html">Hard Rain</a></li>
<li><a class="s" href="all/bouncing-ball.html">Bouncing Ball</a></li>
<li><a class="s" href="all/warp.html">Warp</a></li>
<li><a class="s" href="all/messages.html">Messages</a></li>
<li><a class="s" href="all/messages2.html">Messages 2</a></li>
<li><a href="all/fade-out.html" class="s">Fade Out</a></li>
<li><a class="s" href="all/logo.html">Logo</a></li>
<li><a class="s" href="all/rainstorm.html">Rainstorm</a></li>
<li><a class="s" href="all/spotlight.html">Spotlight</a></li>
<li><a id="randomizer" href="#">Randomizer</a></li>
</ul>
</div>
<footer class="footer">
<a href="https://twitter.com/share" class="twitter-share-button" data-text="Classic "After Dark" screensavers, rebuilt using CSS animations:" data-related="bryanebraun">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</footer>
<div class="behind">
<a href="http://codepen.io/bryanbraun/pen/bojpu" class="clearfix"><div class="toaster"></div></a>
<p>Made by <a href="http://bryanbraun.com">Bryan</a></p>
</div>
</body>
</html>