forked from MaxLaumeister/bitlisten
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
121 lines (118 loc) · 4.57 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<title>Dash Transaction Visualizer</title>
<meta name="description" content="Realtime Dash transaction visualizer. See and hear new transactions, trades and blocks as they occur.">
<meta name="keywords" content="BitListen,Dash,transactions,visualizer,trades,blockchain">
<meta name="author" content="UdjinM6">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="jquery.nouislider.custom.css">
<link rel="stylesheet" type="text/css" href="engine.css">
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="ie.css">
<![endif]-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="bitlisten.min.js" type="text/javascript"></script>
<script src="https://insight.dash.org/socket.io/socket.io.js"></script>
</head>
<body>
<div id="header" class="serif interface">
<div id="rateBox">
<span id="rate">---.--</span><br />
<span class="rateButton" id="dashusdRate" onclick="switchExchange('dashusd');">$/dash</span>|
<span class="rateButton" id="dashbtcRate" onclick="switchExchange('dashbtc');">btc/dash</span>|
<span class="rateButton" id="btcusdRate" onclick="switchExchange('btcusd');">$/btc</span>
</div>
<div id="headerInfo">
<p>
Realtime Dash transaction visualizer
</p>
<p>
Donations are highlighted: <span id="donationAddress" qrtarget="dash:XsV4GHVKGTjQFvwB7c6mYsGV3Mxf7iser6">XsV4GHVKGTjQFvwB7c6mYsGV3Mxf7iser6</span>
</p>
<p class="subdued">
Donate to <a href="https://github.com/MaxLaumeister/bitlisten">BitListen</a> creator <a href="http://www.maxlaumeister.com/">Maximillian Laumeister</a>:
<span id="donationAddressBitListen" qrtarget="bitcoin:1istendqWJ1mKvrdRUQZDL2F3tVDDyKdj">1istendqWJ1mKvrdRUQZDL2F3tVDDyKdj</span>
<br />
<span id="musicianDonation"></span>
</p>
</div>
<div id="txStats">
<p>
<span id="txTime">-</span><br />
<span id="txCount">-</span> txes<br />
<span id="txTotal">--.--</span> DASH
</p>
</div>
</div>
<table id="pageSplitter" border="0">
<tr>
<td>
<div id="pageDiv" class="contentPanel">
<div id="bubbleDiv"></div>
<div id="overlay">
<div id="connectionStatus" class="monospace">
<div id="connectionInnerDiv" class="interface">
<p>
<label>
<input id="blockchainCheckBox" autocomplete="off" type='checkbox' checked="checked" onchange='this.checked ? TransactionSocket.init() : TransactionSocket.close();'>
<span id="blockchainStatus"></span></label>
</p>
</div>
</div>
<div id="volumeWrapper" class="interface">
<div id="volumeControl"></div>
<div id="volumeSlider" class="noUiSlider"></div>
</div>
<div id="soundControls" class="interface">
<div id="scalePitch" class="monospace">
<p>Select Instrument:
<select onchange="Sound.change(parseInt($(this).val(), 10));">
<option value="0">Celesta</option>
<option value="1">Planet</option>
<option value="2">Wikki</option>
</select>
</p>
<p>
<label>
<input id="scalePitchCheckBox" autocomplete="off" type='checkbox' checked="checked" onchange='globalScalePitch = this.checked'>
Scale pitch with transaction amount<br />(bigger transaction = deeper sound)
</label>
</p>
<p>
<label class="disabled">
<input id="showDollarCheckBox" autocomplete="off" type='checkbox' onchange='globalShowDollar = this.checked' disabled="disabled">
Show units in USD instead of DASH
</label>
</p>
</div>
</div>
</div>
<span id="waitingForTransactions">
Please click anywhere to unmute.
</span>
</div>
</td>
</tr>
</table>
<div id="hideInterface" class="serif" onclick='toggleInterface()'>[ Hide Interface ]</div>
<div id="noJavascript">
<p>
Please enable Javascript, or try a different web browser.
</p>
</div>
<div id="noInternetExplorer" onclick>
<p>
Sorry, <span style="color: yellow;">no support for Internet Explorer.</span>
</p>
<p>
Try <a href="https://www.google.com/chrome/" target="_blank">Chrome</a>, <a href="http://www.getfirefox.com" target="_blank">Firefox</a> or Safari.
</p>
<br />
<p class="clickSuppress" style="font-size: 0.5em;">
<span style="cursor: pointer; text-decoration: underline;"> (Click Here to Suppress this warning.) </span>
</p>
</div>
</body>
</html>