-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeline.html
42 lines (36 loc) · 1.54 KB
/
timeline.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
<html lang="en">
<head>
<!-- Libraries -->
<script src="libs/jquery-2.1.1.js" type="text/javascript"></script>
<script src="libs/d3.min.js" type="text/javascript"></script>
<script src="libs/d3.chart.min.js" type="text/javascript"></script>
<script src="libs/moment.js" type="text/javascript"></script>
<!-- Custom JS -->
<script src="js/bubble_timeline_chart.js" type="text/javascript"></script><!-- Bubble Timeline -->
<!-- Stylesheets -->
<link rel="stylesheet" href="css/stylesheet.css">
</head>
<body>
<div class = "bubble-wrapper" id = "bubble-wrapper">
<h1 class = "no-bottom">Bubble Timeline</h1>
<h5 class = "back-link"><a href = "index.html"> --- Back to Table of Contents</a></h5>
<div class = "bubble-container">
<div class="time-buttons btn-group btn-group-sm">
<button id="six-months" type="button" class="btn btn-default">Last 6 Months</button>
<button id="one-year" type="button" class="btn btn-default">1 year</button>
<button id="two-years" type="button" class="btn btn-default">2 Years</button>
<button id="reset-years" type="button" class="btn btn-default active">All Releases</button>
</div>
<div class="risk-buttons btn-group btn-group-sm">
<button id="security-butt" type="button" class="btn btn-default active">Security</button>
<button id="operational-butt" type="button" class="btn btn-default">Operational</button>
</div>
<div id="bubble-chart-container">
</div>
</div>
</div>
</body>
<footer>
<script src="js/bubble_timeline_init.js" type="text/javascript"></script>
</footer>
</html>