-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeature_CountDown.html
78 lines (63 loc) · 2.27 KB
/
Feature_CountDown.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Full Screen Video BackGround, Experiment 1</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="http://code.jquery.com/jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="js/countdown.js" type="text/javascript"></script>
<script src="js/init.js" type="text/javascript"></script>
<link href='css/countDown.css' rel='stylesheet' type='text/css'>
<link href='css/core.css' rel='stylesheet' type='text/css'>
<link href='css/julius.css' rel='stylesheet' type='text/css'>
<!--[if lt IE 9]>
<script>
document.createElement('video');
</script>
<![endif]-->
</head>
<body>
<video autoplay loop poster="poster.jpg" id="bgvid">
<source src="vids/grain/wild_grass.webm" type="video/webm">
<source src="vids/grain/wild_grass.mp4" type="video/mp4">
<source src="vids/grain/wild_grass.ogg" type="video/ogg">
</video>
<div class="container">
<h1 class="dark">Coming Soon</h1>
<h2 class="dark">A subheading here</h2>
<p class="dark">Some content here</p>
</div>
<div class="container1">
<div class="wrap dark">
<ul id="countdown">
<li>
<span class="days">479</span>
<h3>Days</h3>
</li>
<li>
<span class="hours">02</span>
<h3>hours</h3>
</li>
<li>
<span class="minutes">00</span>
<h3>minutes</h3>
</li>
<li>
<span class="seconds">53</span>
<h3>seconds</h3>
</li>
</ul>
</div>
</div>
<!-- Google Analytics code -->
<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-74783923-2', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics Code -->
</body>
</html>