This repository has been archived by the owner on Apr 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
68 lines (67 loc) · 2.88 KB
/
index.htm
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
<!-- https://github.com/lookitscook/price-of-humanity -->
<html>
<head>
<title>The Price of Humanity</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/lib/reset.css" type="text/css">
<link rel="stylesheet" href="css/main.css" type="text/css">
<script src="./js/lib/jquery.min.js"></script>
<script src="./js/lib/jquery.transit.min.js"></script>
<script src="./js/lib/jquery.csv.min.js"></script>
<script src="./js/lib/jquery.ba-throttle-debounce.min.js"></script>
<script src="./js/main.js"></script>
</head>
<body>
<div id="fb-root"></div>
<div id="content"><ul></ul></div>
<div id="interface">
<div id="cost">
<ul></ul>
<div class="label max" data-value="100000">$100,000</div>
<div class="label min" data-value="2">$2</div>
</div>
<div id="about" class="hidden">
This project is an entry in The Kantar Information is Beautiful Awards' March 24th, 2014, Data Viz Challenge-Human Cost. All entries in the Challenge were given the same data set to use. See our raw data here: <a href="http://bit.ly/human_costs" target="_blank">http://bit.ly/human_costs</a>
</div>
<div id="location"><ul></ul></div>
<div id="header">
<h1><a href="#">The Price of Humanity</a></h1>
<div class="about">
<a href="#">About This Project</a>
</div>
<div class="photo-story">
<a class="" href="#">This Photo's Story</a>
</div>
</div>
<div class="overlay">
<div id="start" class="loading message">
<p class="status">Loading countries...</p>
<span class="login">
<a class="facebook button" href="#">Log in with Facebook</a>
<br>to view the worth of you and your friends or
<br><a href="#" class="close">view only our photos</a>
<br><sub>Either way, we won't store or share your information.</sub>
</span>
</div>
</div>
</div>
<script>
//facebook api
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
//google analytics
(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-49237320-1', 'priceofhumanity.com');
ga('send', 'pageview');
</script>
</body>
</html>