bitcoin-liveblock/index.html

35 lines
1.1 KiB
HTML
Raw Normal View History

2018-01-04 15:24:35 -06:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>LiveBlock</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="js/vivagraph.js"></script>
<script type="text/javascript" src="js/webgl-programs.js"></script>
<link type="text/css" href="js/liveblock.css" rel="stylesheet" />
</head>
<body>
<div id="g" style="background-color:black; width:100%; height:600px;"></div>
<div id="info">Hover over nodes to view transaction details</div>
LEGEND:
<span class="input-node">Green = input</span>, <span class="output-node">Red = output</span>,
<span class="input-output-node">White = input that became output</span>,<span class="output-input-node">Purple = output that became input</span>, <span class="transaction-node">Blue = transaction</span>
<br />
NAVIGATION: mouse + scroll = pan/zoom, SPACE = run/pause
<br />
<pre>
</pre>
<div id="output" ></div>
<div id="output2" ></div>
</body>
<script type="text/javascript" src="js/liveblock.js"></script>
</html>