-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (31 loc) · 1.24 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>DOM Visualizer</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="page">
<div id="input-container">
<label for="html-input-box">Input HTML below:</label><br><br>
<textarea id="html-input-box" onkeydown="liveUpdate()"></textarea><br><br>
<button id="visualize-btn" type="button"
onclick="generateDOMTree(document.getElementById('html-input-box').value);">Visualize</button><br><br>
<input type="checkbox" id="live-update-checkbox">
<label for="live-update-checkbox">Live Update</label>
</div>
<div id="output-container">
<label for="dom-tree-output">DOM Tree View</label><br><br>
</div>
</div>
<script src="js/index.js"></script>
<script src="js/visualize.js"></script>
<script defer src="https://d3js.org/d3-hierarchy.v2.min.js"
integrity="sha384-MdaUeYF7gHVN8QFU257bd8KI0ROof9MWr+gcDkF7U/B06AnkV7ySOAkPyOZac9Uh" crossorigin="anonymous">
</script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/d3/6.3.1/d3.min.js"
integrity="sha512-9H86d5lhAwgf2/u29K4N5G6pZThNOojI8kMT4nT4NHvVR02cM85M06KJRQXkI0XgQWBpzQyIyr8LVomyu1AQdw=="
crossorigin="anonymous"></script>
</body>
</html>