-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreal-index.html
executable file
·765 lines (734 loc) · 20.8 KB
/
real-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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>evenBits 亿万比特 — 青少年极客节 2015</title>
<link rel="favicon" href="favicon.ico">
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" type="text/css" href="fonts/play.css">
<link rel="stylesheet" type="text/css" href="fonts/titillium-web.css">
<link rel="stylesheet" type="text/css" href="fonts/font-awesome.css">
<script type="text/javascript">
var initialWidth = window.innerWidth;
var firstTimeDetermineViewportSize = true;
function browserSizeChange() {
if (firstTimeDetermineViewportSize || (initialWidth != window.innerWidth)) {
document.getElementById("header").style.height = (window.innerHeight-240) + "px";
firstTimeDetermineViewportSize = false;
};
}
function docDidLoad() {
document.getElementById("header-h1").style.opacity = "1";
document.getElementById("header-h1").style.top = "0";
window.setTimeout(function(){
document.getElementById("header-h2").style.opacity = "1";
document.getElementById("header-h2").style.top = "0";
}, 800);
window.setTimeout(function(){
document.getElementById("event-meta-info").style.opacity = "1";
document.getElementById("header-desc").style.opacity = "0.9";
}, 1600);
window.setTimeout(function(){
document.getElementById("main").style.opacity = "1";
}, 2400);
};
</script>
<style type="text/css">
@media screen and (max-width: 750px) {
body {
font-size: 13px;
}
.hide-for-mobile {
display: none;
visibility: hidden;
opacity: 0;
}
}
@media screen and (min-width: 751px) {
body {
font-size: 18px;
}
.global-in {
width: 680px;
}
}
</style>
<style type="text/css">
@-webkit-keyframes waves {
0% { background-position: 0px 0px; }
100% { background-position: 300px 0px; }
}
@-ms-keyframes waves {
0% { background-position: 0px 0px; }
100% { background-position: 300px 0px; }
}
@keyframes waves {
0% { background-position: 0px 0px; }
100% { background-position: 300px 0px; }
}
</style>
<style type="text/css">
* {
-webkit-transition: all 750ms ease;
-ms-transition: all 750ms ease;
transition: all 750ms ease;
box-sizing: border-box;
}
i.fa.left-padding {
padding-left: 0.5em;
}
body {
font-family: 'Play', 'GillSans-Light', 'Gill Sans Light', 'Gill Sans', 'Myriad Pro', 'Myriad Set Pro', 'Myriad', 'Myriad Set', Myriad, 'Open Sans', 'Helvetica Neue', Helvetica, 'Lantinghei SC', 'Lantinghei TC', 'Hiragino Sans GB', 'NotoSansCJKsc-Light', 'Noto Sans CJK SC', 'Source Han Sans CN', 'Source Han Sans CJK', 'Noto Sans CJK', 'Source Han Sans JP', 'Noto Sans CJK JP', 'Source Han Sans', 'Noto Sans CJK', 'Hiragino Kaku Gothic Pro', Hiragino, sans-serif;
font-weight: 400;
color: #494949;
background: #FFF;
padding: 0;
margin: 0;
}
header.global {
height: 100%;
padding: 15% 0 16%;
}
header.global .inside-global-flex {
position: absolute;
left: 0;
width: 100%;
}
header.global h1, header.global h2, header.global h3 {
font-weight: 400;
text-align: center;
position: relative;
padding: 0;
margin: 0;
opacity: 0;
}
header.global h1 {
font-size: 5em;
letter-spacing: -4px;
top: -25px;
}
header.global h1 sup {
font-family: Menlo, Monoca, monospace;
font-size: 0.2em;
opacity: 0.5;
}
header.global h2 {
font-size: 1.1em;
font-weight: 100;
top: -10px;
}
header.global h2::before, header.global h2::after {
display: inline-block;
opacity: 0.4;
}
header.global h2::before {
/*content: "›";*/
}
header.global h2::after {
/*content: "‹";*/
}
header.global h2 span {
padding: 0 10px;
}
header.global #event-meta-info {
text-align: center;
opacity: 0;
margin: 2.5em 0 0 0;
}
header.global #event-meta-info * {
font-size: 1em;
font-style: normal;
text-align: center;
}
header.global h3 {
font-size: 0.9em;
font-weight: 100;
top: 50px;
}
#main {
font-family: 'Titillium WebLight', 'Titillium Web', Titillium Web, 'Myriad Pro', 'Myriad Set Pro', 'Myriad', 'Myriad Set', Myriad, 'Open Sans', 'Helvetica Neue', Helvetica, 'Lantinghei SC', 'Lantinghei TC', 'Hiragino Sans GB', 'NotoSansCJKsc-Light', 'Noto Sans CJK SC', 'Source Han Sans CN', 'Source Han Sans CJK', 'Noto Sans CJK', 'Source Han Sans JP', 'Noto Sans CJK JP', 'Source Han Sans', 'Noto Sans CJK', 'Hiragino Kaku Gothic Pro', Hiragino, sans-serif;
opacity: 0;
}
</style>
<style type="text/css">
section.global {
}
.global-in {
padding: 0 10px;
margin: 0 auto;
}
.global h2 {
font-size: 2em;
}
.global-in h3 {
font-size: 1.3em;
}
.global-in h2, .global-in h3, .global-in h4 {
font-weight: 300;
line-height: 1em;
text-align: center;
padding: 0 0 15px;
margin: 0;
}
.global p {
line-height: 2em;
text-align: center;
padding: 0;
margin: 0 auto;
}
.global p > span {
display: inline-block;
}
footer.global {
padding: 30px 0 0;
}
footer.global .copyright {
font-size: 0.7777777777em;
text-align: center;
padding: 10px 0 30px;
}
footer.global .sponsor ul {
text-align: center;
display: block;
}
footer.global .sponsor ul li {
display: inline-block;
}
footer.global .sponsor ul li img {
max-height: 50px;
padding: 0 10px;
}
@media screen and (max-width: 750px) {
footer.global .sponsor ul li img {
padding: 0;
}
}
footer.global .core-team {
color: #FFF;
text-align: center;
background: #000;
display: none;
padding: 20px 0;
transition: none;
}
footer.global .core-team p {
font-size: 14px;
}
footer.global .core-team p span {
display: inline-block;
}
footer.global .core-team-member {
width: 180px;
padding: 10px 0 15px;
margin: 0 0 0 24px;
}
footer.global .core-team-member-link {
color: #FFF;
text-align: left;
text-decoration: none;
display: block;
height: 50px;
}
footer.global .core-team-member-avatar {
border-radius: 6px;
float: left;
width: 50px;
height: 50px;
}
footer.global .core-team-member-meta-info {
float: left;
padding: 5px 0 0 10px;
}
footer.global .core-team-member-name, footer.global .core-team-member-title {
color: #FFF;
display: block;
}
footer.global .core-team-member-name {
font-size: 16px;
}
footer.global .core-team-member-title {
font-size: 14px;
}
img.section-title-image {
display: block;
padding: 0;
margin: 0 auto;
}
img.section-top-or-bottom-image {
display: block;
padding: 0;
margin: 0;
width: 100%;
height: auto;
}
</style>
<style type="text/css">
section img.section-top-or-bottom-image:last-child {
margin-bottom: -3px;
}
section img.section-top-or-bottom-image:first-child {
margin-top: -3px;
}
section#play {
color: #FFF;
text-shadow: rgba(0, 0, 0, 0.0877) 0 1px 0;
background: #32A7E0;
}
section#play div.section-top-or-bottom-image {
background: url(waves.png) top repeat-x scroll;
height: 100px;
-webkit-animation: waves 6s infinite;
-webkit-animation-timing-function: linear;
-webkit-animation-direction: normal;
-ms-animation: waves 6s infinite;
-ms-animation-timing-function: linear;
-ms-animation-direction: normal;
animation: waves 6s infinite;
animation-timing-function: linear;
animation-direction: normal;
}
section#gsn {
color: #FFF;
background: #000;
}
section#gsn img.section-title-image {
}
section#gmoe {
color: #FFF;
text-shadow: rgba(0, 0, 0, 0.0877) 0 1px 0;
background: #6DD53A;
}
section#order {
color: #444;
background: #F8F8F8;
}
section#order .global-in {
padding: 60px 0;
}
.mini-box {
padding: 80px 0;
}
.mini-box h3 {
text-transform: uppercase;
}
.feedback {
}
section table {
/*border-collapse: separate;*/
border-collapse: collapse;
width: 100%;
margin: 10px 0;
}
section table tr {
display: block;
width: 100%;
}
section table tr.bb {
border-bottom: 1px solid rgba(255, 255, 255, 0.6222);
display: block;
}
section table th {
font-size: 1.1em;
text-align: left;
padding: 10px 0 0;
}
section table th small {
font-size: 0.85227272em;
font-weight: 300;
display: block;
}
section table td {
font-size: 0.875em;
font-weight: 300;
display: block;
padding: 9px 0 12px;
}
table.dualcol {
}
table.dualcol tr {
height: 45px;
}
table.dualcol td {
text-align: center;
display: block;
float: left;
width: 50%;
}
</style>
<style type="text/css">
.form-preorder {
text-align: center;
width: 100%;
max-width: 480px;
height: 128px;
padding: 20px 0;
margin: 0 auto;
}
input[type="email"] {
font-family: inherit;
font-size: 0.9em;
color: #555;
border: 1px solid rgba(0, 0, 0, 0.15555);
border-radius: 3px;
outline: none;
box-shadow: inset rgba(0, 0, 0, 0.09777) 0 1px 2px 0;
}
input[type="email"]:focus {
outline: none;
}
.btn {
font-family: 'Play', 'GillSans-Light', 'Gill Sans Light', 'Gill Sans', 'Myriad Pro', 'Myriad Set Pro', 'Myriad', 'Myriad Set', Myriad, 'Open Sans', 'Helvetica Neue', Helvetica, 'Lantinghei SC', 'Lantinghei TC', 'Hiragino Sans GB', 'NotoSansCJKsc-Light', 'Noto Sans CJK SC', 'Source Han Sans CN', 'Source Han Sans CJK', 'Noto Sans CJK', 'Source Han Sans JP', 'Noto Sans CJK JP', 'Source Han Sans', 'Noto Sans CJK', 'Hiragino Kaku Gothic Pro', Hiragino, sans-serif;
font-size: 16px;
letter-spacing: 1px;
text-align: center;
text-decoration: none;
border-radius: 3px;
cursor: pointer;
box-sizing: border-box;
height: 36px;
padding: 3px 21px 0;
margin: 0;
transition: none;
}
.btn.btn-submit {
color: #FFF;
text-shadow: rgba(0, 0, 0, 0.11111) 0 1px 0;
background: #0CBFFA;
border: 1px solid rgba(0, 0, 0, 0.14);
box-shadow: none;
display: inline-block;
}
.btn.btn-submit:active {
background: #0FA4D6;
border: 1px solid rgba(0,0,0,0.14);
border-radius: 4px;
box-shadow: inset 0px 2px 20px 0px rgba(0,0,0,0.16);
}
.btn.btn-email {
font-size: 40px;
letter-spacing: 0;
color: #FFF;
background: none;
border: 2px solid rgba(255, 255, 255, 0.5);
border-radius: 2000px;
box-shadow: none;
display: block;
width: 100px;
height: 100px;
padding-top: 26px;
}
p ~ .btn.btn-email {
margin: 10px auto 0;
}
.btn.btn-email:hover {
border: 2px solid rgba(255, 255, 255, 1);
}
.message-line {
font-size: 14px;
text-align: center;
display: block;
height: 22px;
}
/* ------------------------ */
.goto-typeform {
color: #FFF;
text-decoration: none;
text-shadow: rgba(0, 0, 0, 0.0877) 0 1px 0;
background: #32A7E0;
background-origin: border-box;
box-shadow: rgba(255, 255, 255, 0.0977) 0 2px 1px 0 inset, #23759E 0 4px 0px 0, rgba(0, 0, 0, 0.1333) 0 0 1px 0;
border-radius: 4px;
display: inline-block;
position: relative;
top: 0;
padding: 0.5em 2em;
margin: 0 auto;
-webkit-transition: all 1ms ease;
-ms-transition: all 1ms ease;
transition: all 1ms ease;
box-sizing: border-box;
}
.goto-typeform:hover {
background: #2D99CF;
box-shadow: rgba(0, 0, 0, 0.0477) 0 1px 0px 0 inset, #23759E 0 0px 0px 0, rgba(0, 0, 0, 0) 0 0 1px 0;
top: 4px;
}
</style>
<style type="text/css">
input[datastate="100"] {
background-color: #FFE5EA;
}
input[datastate="101"], input[datastate="102"] {
background-color: #E4FFE9;
}
input[disabled] {
background: rgba(255, 255, 255, 0.0222222);
box-shadow: none;
}
</style>
<style type="text/css">
@media screen and (max-width: 750px) {
header.global .inside-global-flex {
top: 1em;
margin: 0;
}
section img.section-title-image {
width: 100%;
max-width: 550px;
}
#input-email {
display: block;
box-sizing: border-box;
width: 86%;
height: 36px;
padding: 4px 8px;
margin: 1em auto;
}
#submit-email-preorder {
display: block;
margin: 1em auto;
}
section#play div.section-top-or-bottom-image {
background-size: 150px 22px;
}
}
@media screen and (min-width: 751px) {
header.global .inside-global-flex {
top: 50%;
margin: -10em 0 0 0;
}
section img.section-title-image {
max-width: 550px;
height: 420px;
}
#input-email {
display: inline-block;
float: left;
box-sizing: border-box;
width: 370px;
height: 36px;
padding: 4px 8px;
margin: 0 20px 0 0;
}
#submit-email-preorder {
float: right;
}
section#play div.section-top-or-bottom-image {
background-size: 300px 44px;
}
footer.global .core-team-member {
display: inline-block;
}
}
</style>
<script type="text/javascript" src="main.js"></script>
</head>
<body onload="docDidLoad()">
<div class="cont">
<div class="content">
<header class="global" id="header">
<div class="inside-global-flex">
<h1 id="header-h1">evenBits<sup>[0]</sup></h1>
<h2 id="header-h2"><span>极客的盛会,技术宅的狂欢。<br />2015 夏,与我们一起聆听青春互联网的心跳。</span></h2>
<div id="event-meta-info">
<address>Hangzhou, China</address>
<time>July 27, 2015</time>
</div>
</div>
</header>
<div id="main">
<section class="global" id="play">
<div class="section-top-or-bottom-image"></div>
<div class="global-in">
<p><span>为年轻人准备的舞台,为梦想者造就的机会。</span><span>一次不平凡的体验,两天属于你的嘉年华。</span></p>
<div class="global-in-1 mini-box">
<h3>Featured Speeches</h3>
<table>
<tbody>
<tr>
<th>青少年开发者生态报告 <small>Social Banned List</small></th>
</tr>
<tr class="bb">
<td>关于年轻极客这一种群的生活习性、聚居地、捕捉方法和饲喂指南。</td>
</tr>
<tr>
<th>校内地下工作教程 <small>Good Good Study Day Day Up</small></th>
</tr>
<tr class="bb">
<td>一些能提高课堂上开发效率的雕虫小技,例如在纸上沟通时加密信息、预防中间人攻击。</td>
</tr>
<tr>
<th>进城指南 <small>Nong Ming Gong Jing Cheng Fang Pian Zhi Nan</small></th>
</tr>
<tr class="bb">
<td>北上广深户籍指南、名校自招骗分导论,以及各城市的空气指数和咖啡馆地图。</td>
</tr>
<tr>
<th>码农装逼导论 <small>The Art of Zhuang B (TAOZB)</small></th>
</tr>
<tr class="bb">
<td>上创意工作者们的社区发现更大的世界,用 Vim 在 UNIX 下写 GNU 代码规范。</td>
</tr>
<!--tr>
<th>圆桌爆料会 <small>Black History in Bohemian Archive</small></th>
</tr>
<tr class="bb">
<td>技术大牛们不为人知的励志故事,节操无下限的弹幕吐槽和现场提问。</td>
</tr-->
<tr>
<td>…… 以及更多你期待已久的话题,只此一家。</td>
</tr>
</tbody>
</table>
</div>
<div class="feedback">
<p>要来台上搞个大新闻么少年?</p>
<a href="mailto:[email protected]" class="btn btn-email"><i class="fa fa-envelope"></i></a>
</div>
</div>
<img class="section-top-or-bottom-image" src="green-triangle.svg">
</section>
<!--section class="global" id="gsn">
<div class="global-in">
<img class="section-title-image" src="gsn.jpg">
<h2>极客今晚留下来</h2>
<h2>Geek/stay night</h2>
<p><span>被命运召集起来的少年们,</span><span>相聚杭州市。</span></p>
<p><span>两大抑止力、五大魔法纠缠于此,</span><span>开启根源之涡,通向全部的过去与未来。</span></p>
<div class="global-in-2 mini-box">
<h3>Featured Activities</h3>
<table class="dualcol">
<tbody>
<tr class="bb">
<td>非诚勿扰菊苣秀</td>
<td>谁是卧底极客版</td>
</tr>
<tr class="bb">
<td>命题黑客马拉松</td>
<td>弹幕圆桌大圣战</td>
</tr>
<tr class="bb">
<td>现场解谜大闯关</td>
<td><del>女装少年 Cosplay</del></td>
</tr>
</tbody>
</table>
</div>
<div class="feedback">
<p>想到了更有趣的创意玩法?告诉我们吧!</p>
<a href="mailto:[email protected]" class="btn btn-email"><i class="fa fa-envelope"></i></a>
</div>
</div>
<img class="section-top-or-bottom-image" src="green-triangle.svg">
</section-->
<section class="global" id="gmoe">
<div class="global-in">
<img class="section-title-image" src="gmoe.jpg">
<h2>极萌·线上同步大会</h2>
<h2>GEEK.MOE Online Conference</h2>
<p><span>谁说只有现充才能参与线下活动?</span><span>宅在家里,也能享受活动乐趣。</span></p>
<div class="global-in-2 mini-box">
<table class="dualcol">
<tbody>
<tr class="bb">
<td>弹幕视频生放送</td>
<td>线上互动与吐槽</td>
</tr>
<tr class="bb">
<td>社交网络话题墙</td>
<td>黑客解谜大挑战</td>
</tr>
</tbody>
</table>
</div>
</div>
<img class="section-top-or-bottom-image" src="light-gray-triangle.svg">
</section>
<section class="global" id="order">
<div class="global-in">
<p>签订契约,订阅最新动态</p>
<div class="form-preorder">
<div><a class="goto-typeform" target="blank" href="/signup.html">Sign Up <i class="fa left-padding fa-arrow-circle-right"></i></a></div>
</div>
<div class="message-line" id="email-preorder-server-back-message"></div>
<p><span>无论是否把自己定义成 Geek,放开来玩就好。</span><span>2015 暑假,杭州见。</span></p>
<p><span><del>欢迎光临一年一度的青少年技术圈同性交友大会</del></span></p>
</div>
</section>
<footer class="global" id="footer">
<div class="sponsor">
<p>感谢以下合作伙伴及赞助商</p>
<ul>
<li><a href="http://anthonos.org/"><img src="pt1.png"></a></li>
<li><a href="https://vijos.org/"><img src="pt2.png"></a></li>
<li><a href="https://nichijou.im/"><img src="pt3.png"></a></li>
<li><a href="http://voyamiles.com/"><img src="pt4.png"></a></li>
<li class="hide-for-mobile"><img src="separate.png"></li>
<li><a href="http://shixian.com/"><img src="sp1.png"></a></li>
<li><a href="http://lingox.cn/"><img src="sp2.png"></a></li>
</ul>
</div>
<div class="copyright" onclick="showCoreTeamMembers()">
© <script type="text/javascript">document.write((new Date()).getFullYear());</script> evenMedia Inc.<br />本网页目前并非正式版,仅供演示用,实际活动内容可能与当前网页所述有所不同<br />组委会保留本次大会最终解释权
</div>
<div class="core-team" id="core-team">
<div class="core-team-member">
<a class="core-team-member-link" href="http://dimpurr.com/" target="_blank">
<img class="core-team-member-avatar" src="avatar-1.jpg">
<div class="core-team-member-meta-info">
<span class="core-team-member-name">钉子</span>
<span class="core-team-member-title">Prelate - 零号机</span>
</div>
</a>
</div>
<div class="core-team-member">
<a class="core-team-member-link" href="http://www.joyneop.com/" target="_blank">
<img class="core-team-member-avatar" src="avatar-3.jpg">
<div class="core-team-member-meta-info">
<span class="core-team-member-name">Joy Neop</span>
<span class="core-team-member-title">Archon - 初号机</span>
</div>
</a>
</div>
<p id="pippa-passes">
<span><script type="text/javascript">
document.write((function(){
var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://api.pippapasses.net/pippa-passes', false);
xhr.send();
var text = xhr.responseText;
if (text.split("")[(text.length-1)].match(/\w/) != null) {
text = text + ".";
};
return text;
})());
</script></span>
</p>
</div>
</footer>
</div>
</div>
</div>
<script type="text/javascript">
(function(){
if (navigator.userAgent.indexOf("Gecko") != -1 && navigator.userAgent.indexOf("Firefox") != -1 && navigator.userAgent.indexOf("like Gecko") == -1) {
// If the browser is Firefox
document.getElementById("play").getElementsByClassName("section-top-or-bottom-image")[0].style.animation = "none";
};
browserSizeChange();
window.onresize = browserSizeChange;
window.setTimeout(docDidLoad, 800);
})();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-58132946-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>