-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (19 loc) · 977 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>Excel2Tree</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.0/papaparse.js" integrity="sha512-/McISOEKVzVvgu12/1Hk8dSrbKBShnKn79/R50ysl5qWR1zgj347kOT8LJJvInxHDSPmiBG9vg5AhMx6rcELJg==" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
<script src="main.js"></script>
<link rel="stylesheet" href="main.css">
</head>
<body>
<input type="file" id="fileInput" />
<label><input type="checkbox" id="straightLine"> Use Straight Line</label>
<label><input type="checkbox" id="hideRootNode" checked="true"> Hide Root Node</label>
<label><input style="width: 75px; margin-left: 25px;" type="number" value="3" id="treeHeight"> Tree Height</label>
<label style="margin-left: 25px;"><button id="submit">Render</button></label>
<div id="output"></div>
</body>
</html>