forked from nicgirault/circosJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
172 lines (164 loc) · 7.66 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="A front-end template that helps you build fast, modern mobile web apps.">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<title>Circos</title>
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<link rel="icon" sizes="192x192" href="images/android-desktop.png">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Material Design Lite">
<link rel="apple-touch-icon-precomposed" href="images/ios-desktop.png">
<!-- Tile icon for Win8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png">
<meta name="msapplication-TileColor" content="#3372DF">
<link rel="shortcut icon" href="images/favicon.png">
<!-- SEO: If your mobile URL is different from the desktop URL, add a canonical link to the desktop page https://developers.google.com/webmasters/smartphone-sites/feature-phones -->
<!--
<link rel="canonical" href="http://www.example.com/">
-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="//code.getmdl.io/1.3.0/material.deep_purple-pink.min.css">
<link rel="stylesheet" href="styles.css">
<script src='../dist/circos.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/d3/4.5.0/d3.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/d3-queue/3.0.3/d3-queue.js'></script>
</head>
<body class="mdl-demo mdl-color--grey-100 mdl-color-text--grey-700 mdl-base">
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header mdl-layout__header--scroll mdl-color--primary">
<div class="mdl-layout__tab-bar mdl-js-ripple-effect mdl-color--primary-dark">
<a href="#chords" class="mdl-layout__tab is-active">Chords</a>
<a href="#heatmap" class="mdl-layout__tab">Heatmap</a>
<a href="#highlight" class="mdl-layout__tab">Highlight</a>
<a href="#histogram" class="mdl-layout__tab">Histogram</a>
<a href="#line" class="mdl-layout__tab">Line</a>
<a href="#scatter" class="mdl-layout__tab">Scatter</a>
<a href="#stack" class="mdl-layout__tab">Stack</a>
<a href="#text" class="mdl-layout__tab">Text</a>
</div>
</header>
<main class="mdl-layout__content">
<div class="mdl-layout__tab-panel is-active" id="chords">
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
<div class="mdl-card mdl-cell mdl-cell--12-col">
<div class="mdl-card__supporting-text">
<h4>Chords</h4>
<div id='chordsChart'></div>
</div>
<div class="mdl-card__actions">
<a href="#" class="mdl-button">Read the documentation</a>
</div>
</div>
</section>
</div>
<div class="mdl-layout__tab-panel" id="line">
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
<div class="mdl-card mdl-cell mdl-cell--12-col">
<div class="mdl-card__supporting-text">
<h4>Line</h4>
<div id='lineChart'></div>
</div>
<div class="mdl-card__actions">
<a href="#" class="mdl-button">Read the documentation</a>
</div>
</div>
</section>
</div>
<div class="mdl-layout__tab-panel" id="scatter">
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
<div class="mdl-card mdl-cell mdl-cell--12-col">
<div class="mdl-card__supporting-text">
<h4>Scatter</h4>
<div id='scatterChart'></div>
</div>
<div class="mdl-card__actions">
<a href="#" class="mdl-button">Read the documentation</a>
</div>
</div>
</section>
</div>
<div class="mdl-layout__tab-panel" id="stack">
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
<div class="mdl-card mdl-cell mdl-cell--12-col">
<div class="mdl-card__supporting-text">
<h4>Stack</h4>
<div id='stackChart'></div>
</div>
<div class="mdl-card__actions">
<a href="#" class="mdl-button">Read the documentation</a>
</div>
</div>
</section>
</div>
<div class="mdl-layout__tab-panel" id="text">
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
<div class="mdl-card mdl-cell mdl-cell--12-col">
<div class="mdl-card__supporting-text">
<h4>Text</h4>
<div id='textChart'></div>
</div>
<div class="mdl-card__actions">
<a href="#" class="mdl-button">Read the documentation</a>
</div>
</div>
</section>
</div>
<div class="mdl-layout__tab-panel" id="highlight">
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
<div class="mdl-card mdl-cell mdl-cell--12-col">
<div class="mdl-card__supporting-text">
<h4>Highlight</h4>
<div id='highlightChart'></div>
</div>
<div class="mdl-card__actions">
<a href="#" class="mdl-button">Read the documentation</a>
</div>
</div>
</section>
</div>
<div class="mdl-layout__tab-panel" id="heatmap">
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
<div class="mdl-card mdl-cell mdl-cell--12-col">
<div class="mdl-card__supporting-text">
<h4>Heatmap</h4>
<div id='heatmapChart'></div>
</div>
<div class="mdl-card__actions">
<a href="#" class="mdl-button">Read the documentation</a>
</div>
</div>
</section>
</div>
<div class="mdl-layout__tab-panel" id="histogram">
<section class="section--center mdl-grid mdl-grid--no-spacing mdl-shadow--2dp">
<div class="mdl-card mdl-cell mdl-cell--12-col">
<div class="mdl-card__supporting-text">
<h4>Histogram</h4>
<div id='histogramChart'></div>
</div>
<div class="mdl-card__actions">
<a href="#" class="mdl-button">Read the documentation</a>
</div>
</div>
</section>
</div>
</main>
</div>
<script src="//code.getmdl.io/1.3.0/material.min.js"></script>
<script src='./chords.js'></script>
<script src='./line.js'></script>
<script src='./scatter.js'></script>
<script src='./stack.js'></script>
<script src='./text.js'></script> -->
<script src='./highlight.js'></script>
<script src='./heatmap.js'></script>
<script src='./histogram.js'></script>
</body>
</html>