adding pq animations
This commit is contained in:
committed by
JamesFlare1212
parent
6a17be892f
commit
2d3840b312
32
animations/priority_queue/min_heap/index.html
Normal file
32
animations/priority_queue/min_heap/index.html
Normal file
@@ -0,0 +1,32 @@
|
||||
|
||||
<!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="animation.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>
|
||||
Reference in New Issue
Block a user