33 lines
676 B
HTML
33 lines
676 B
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Min heap animation</title>
|
|
<style>
|
|
body {
|
|
position: relative;
|
|
}
|
|
#codeContainer {
|
|
position: absolute;
|
|
top: 100px;
|
|
right: 50px;
|
|
width: 600px;
|
|
}
|
|
pre {
|
|
font-size: 10px;
|
|
}
|
|
</style>
|
|
<script src="konva.js"></script>
|
|
<script src="min_heap.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<h1>Min heap animation</h1>
|
|
<button id="next">Next Step</button>
|
|
<div id="container"></div>
|
|
<div id="codeContainer">
|
|
<pre id="codeBlock"></pre>
|
|
</div>
|
|
</body>
|
|
</html>
|