forked from jasonlong/cayman-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
58 lines (47 loc) · 2.61 KB
/
index2.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Wheel of Life - Visualization of Personal Story Topics Sentiment</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#157878">
<link rel="stylesheet" href="css/normalize.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/cayman.css">
<link rel="stylesheet" href="css/d3.css">
<link rel="stylesheet" href="css/d3_timeseries.css">
<link rel="stylesheet" href="css/radarbarchart.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip-utils/0.0.2/jszip-utils.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
<script src="js/d3_timeseries.js"></script>
<script src="js/radialBarChart.js"></script>
</head>
<body>
<section class="page-header">
<h1 class="project-name">Wheel of Life</h1>
<h2 class="project-tagline">Visualization of Personal Story Topics Sentiment</h2>
<a href="#timeseries" class="btn">Timeline</a>
<a href="#radialbar" class="btn">Radial Bar</a>
<a href="https://github.com/heukirne/wheel-of-life" class="btn">View on Github</a>
</section>
<section class="main-content">
<h1 id="title">Loading...</h1>
Select the authorID:
<select id="authorID"></select> </br></br>
<h2><a name="radialbar">Radial Bar</a></h2>
<div id="d3-radialbar"></div>
<h2>Radial Bar Description</h2>
<p>This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.</p>
<h2><a name="timeseries">Timeline</a></h2>
<div id="d3-timeseries"></div>
<h2>TimeSeries Description</h2>
<p>This is a blockquote following a header. Bacon ipsum dolor sit amet t-bone doner shank drumstick, pork belly porchetta chuck sausage brisket ham hock rump pig. Chuck kielbasa leberkas, pork bresaola ham hock filet mignon cow shoulder short ribs biltong.</p>
</section>
</body>
<script src="js/main.timeseries.js"></script>
<script src="js/main.radar.js"></script>
<script src="js/main.js"></script>
<script>loadViz();</script>
</html>