-
Notifications
You must be signed in to change notification settings - Fork 0
/
tree.html
44 lines (42 loc) · 911 Bytes
/
tree.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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="data.js"></script>
<script src="svgdom.js"></script>
<script src="maketree.js"></script>
<style>
body
{
margin: 0;
}
#tree
{
margin: 0 auto;
display: block;
width: 100%;
height: auto;
max-height: 800px;
}
#explanation
{
margin: 20px;
text-align: center;
}
</style>
</head>
<body>
<svg id="tree" viewBox="0 0 400 400">
<style>
tspan {
cursor: pointer;
font-family: 'Times New Roman', Times, serif;
}
</style>
</svg>
<div id="explanation"></div>
<script>
drawTree();
</script>
</body>
</html>