-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
60 lines (48 loc) · 962 Bytes
/
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
<!DOCTYPE html>
<meta charset="utf-8">
<style type="text/css">
.node {
cursor: pointer;
}
.overlay{
background-color:#EEE;
}
.node circle {
fill: #fff;
stroke: steelblue;
stroke-width: 1.5px;
}
.node text {
font-size:10px;
font-family:sans-serif;
}
.link {
fill: none;
stroke: #ccc;
stroke-width: 1.5px;
}
.templink {
fill: none;
stroke: red;
stroke-width: 3px;
}
.ghostCircle.show{
display:block;
}
.ghostCircle, .activeDrag .ghostCircle{
display: none;
}
</style>
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="js/d3.js"></script>
<script src="js/circular.js"></script>
<script src="js/tree.js"></script>
<!-- <script src="js/dndTree.js"></script> -->
<body>
<div id="tree-container"></div>
</body>
<script>
// dndTree('data3.json')
// load_tree(960, 'data3.json')
load_circular(3960, 'json/annuaire.json')
</script>