forked from jikeytang/front-end-collect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/d3/d3.min.js"></script>
<script src="js/app.js"></script>
</head>
<body ng-app="frontEnd" ng-controller="frontEndCtrl" class="container-fluid">
<div id="tooltip" class="hidden">
<p><strong id="name"></strong></p>
<p><span id="desc"></span></p>
</div>
<h2 class="title">
<a href="https://github.com/hjzheng/front-end-collect" target="_blank">Front-end-collect</a> Chart
<p class="lead" style="padding-left:150px;"> Follow me on Github <a href="https://github.com/hjzheng" target="_blank">hjzheng</a></p>
</h2>
<div class="row">
<form role="form" class="col-sm-6">
<label class="radio-inline">
<input type="radio" ng-model="type" value="tree"> Tree
</label>
<label class="radio-inline">
<input type="radio" ng-model="type" value="cluster"> Cluster
</label>
<label class="radio-inline">
<input type="range" ng-model="rotate" min="0" max="60" ng-disabled="type !== 'cluster'">
</label>
<label class="radio-inline">
<span>{{ rotate * 6 }}</span>
</label>
</form>
</div>
<div class="row">
<front-end-chart></front-end-chart>
</div>
</body>
</html>