-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
executable file
·87 lines (78 loc) · 4.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="This is the project for the assignment of Fall 2015 CS573 course at WPI.">
<meta name="author" content="Cheng Deng">
<link rel="icon" href="favicon.ico">
<title>#Hashtag Trends</title>
<!-- Bootstrap, font awesome and custom styles -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="css/leaflet.css" rel="stylesheet" type="text/css">
<link href="css/lightbox.css" rel="stylesheet" type="text/css">
<link href="css/main.css" rel="stylesheet" type="text/css">
<!--
This project has not been tested on any browsers other than Chrome.
Some functionality may not work as intended on other browsers, e.g. IE & Firefox.
-->
</head>
<body class="invert">
<div id="sidebar" class="sidebar">
<div class="page-header">
<h3>
HashtagTrends
<small>
<a href="https://github.com/cdeng/HashtagTrends"
title="Github Project Link" target="_blank">Github Project</a>
</small>
</h3>
</div>
<div class="btn-group hashtagDropdown">
<a class="btn dropdown-toggle btn-select" data-toggle="dropdown" href="#">
#ParisAttacks<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">#ParisAttacks</a></li>
<li><a href="#">#BostonStrong</a></li>
</ul>
</div>
<p class="tagDescription">The hashtag #ParisAttacks spread on
Instagram after a series of attacks shook Paris.</p>
<div id="hashtagImages" class="hashtagImages hide"></div>
<div id="hashtagTrendsDesc" class="hashtagTrendsDesc">
<hr>
<p>HashtagTrends is a visualization project that shows the information
spreading through Instagram #Hashtag.</p>
<p>User can watch the growth of specific Instagram #Hashtag by
clicking on the <strong>"Play"</strong> button on the right-bottom corner.</p>
<p>User can reset the visualization by clicking <strong>"Reset"</strong>
button, and change to another available #Hashtag through the
current <strong>#Hashtag dropdown</strong> button on the top-right.</p>
<p>This project was created by Cheng Deng, Mi Tian and Xing Liu for a graduate course
in Data Visualization at WPI taught by Lane Harrison. Several open-source projects
were used under the MIT License including D3, jQuery, Bootstrap, LeafletJs,
Cartocdn Map, Lightbox, Moment.js, and D3-tip.
Data courtesy of the Instagram and their Developer APIs.</p>
</div>
<div class="controlButtons">
<button type="button" class="btn btn-primary btn-lg" id="playButton">
<i class="fa fa-play-circle"></i> Play</button>
<button type="button" class="btn btn-default btn-lg" id="resetButton">
<i class="fa fa-undo"></i> Reset</button>
</div>
</div>
<div id="hashtagTrendsMapSvg" class="hashtagTrendsMapSvg"></div>
<div id="areaChartSvg" class="areaChartSvg"></div>
<!-- jQuery, Bootstrap, D3 libraries and main controller -->
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script src="js/d3.min.js" type="text/javascript"></script>
<script src="js/leaflet.js" type="text/javascript"></script>
<script src="js/moment.min.js" type="text/javascript"></script>
<script src="js/lightbox.min.js" type="text/javascript"></script>
<script src="js/d3.tip.v0.6.3.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
</body>
</html>