-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·98 lines (82 loc) · 4.24 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>PMP</title>
<link href='http://fonts.googleapis.com/css?family=Alegreya' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="lib/css/style.css" type="text/css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div id="content">
<h1>Peyton Manning Touchdown and Passing Tracker</h1>
<div id="qa">
<h2 class="question">Has Peyton Manning broken any records?</h2>
<h2 class="answer"></h2>
</div>
<p id="rundown"></p>
<div id="stats">
<div class="stat-box">
<div class="label">Games Remaining<span class="dfm-asterisk"></span>:</div><div class="stat-number" id="games-remaining"></div>
</div>
<div class="stat-box">
<div class="label">Projected Touchdowns<span class="dfm-asterisk"></span>:</div><div class="stat-number" id="tds-projected"></div>
</div>
<div class="stat-box">
<div class="label">Projected Passing Yards<span class="dfm-asterisk"></span>:</div><div class="stat-number" id="yds-projected"></div>
</div>
</div>
<div class="bar-box">
<h3 class="bar-label">Passing touchdowns</h3>
<div id="popover" class="popover">
<div class="popover-box">
<div class="popover-label"></div>
<div class="popover-number"></div>
</div>
<div class="arrow-down"></div>
</div>
<div class="bar" id="tds">
<div class="progress"><div class="indicator"><div class="current-number" id="current-tds"><span>TDS</span></div></div></div>
<div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div>
<div class="record-box">
<div class="record-label">Record:</div>
<div class="record-number" id="tds-record">50<span>TDS</span></div>
</div>
</div>
</div>
<div id="instruct">Roll over dots for details</div>
<div class="bar-box">
<h3 class="bar-label">Passing yards</h3>
<div class="bar" id="yds">
<div class="progress"><div class="indicator"><div class="current-number" id="current-yards"><span>YDS</span></div></div></div>
<div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div>
<div class="record-box">
<div class="record-label">Record:</div>
<div class="record-number" id="yards-record">5,476<span>YDS</span></div>
</div>
</div>
</div>
<div class="credits-con">
<span id="dfm-note"></span> Credits: Daniel Fuentes, Vaughn Hagerty / DFM
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="lib/js/peyton.js">
</script>
<script type="text/javascript" src="lib/js/brees-brady.js">
</script>
<script type="text/javascript" src="https://spreadsheets.google.com/feeds/list/0AmZLmP_PGBQKdFlsNmphUHNPUkkzWGVSN3RvUFdKdFE/od6/public/values?alt=json-in-script&callback=load_gs_content">
</script>
<!--analytics-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-37303540-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>