forked from GustavLindberg99/NuclideChart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzindex.html
75 lines (61 loc) · 2.74 KB
/
zindex.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
<html>
<head>
<title>Nuclide Chart</title>
<script src="https://barionleg.github.io/chart.js-Preview-Slider/jquery.min.js"></script>
<script src="https://barionleg.github.io/chart.js-Preview-Slider/nouislider.js"></script>
<script src="https://barionleg.github.io/chart.js-Preview-Slider/utils.js"></script>
<link rel="stylesheet" href="https://barionleg.github.io/chart.js-Preview-Slider/nouislider.css" type="text/css" media="screen"/>
<style>
canvas {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
</style>
<script type="text/javascript" src="https://d3js.org/d3.v7.min.js"></script>
<script type="text/javascript" src="chart.js"></script>
<link rel="stylesheet" type="text/css" href="chartstyle.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="topbar">
<a id="downloadChart" disabled download>
<img class="inline" src="svg.svg" alt="" />
Download Chart (SVG)
</a>
<a href="data.csv" download>
<img class="inline" src="csv.svg" alt="" />
Download Data (CSV)
</a>
<button onclick="alert('Nuclide Chart\nCopyright \u00A9 2020 Gustav Lindberg\nSource code: https://github.com/GustavLindberg99/NuclideChart\n\nThe chart is licensed under the MIT license. The data is from https://www.nndc.bnl.gov/.\n\nIcons made by Smashicons and Icomoon from www.flaticon.com are licensed by CC 3.0 BY. Some of the icons have been modified.')">About this chart</button>
</div>
<div id="content">
<div id="container" style="display:auto" data-zoomable>
<div>
<!--<canvas id="canvas"></canvas>
</div>
</div>
<div id="slider">
</div>
<div>
<canvas id="canvasPreview"></canvas>-->
</div>
<div id="loading">
<img src="blogo.png" width="64" height="64" alt="Loading..." />
<p>Loading...</p>
</div>
<div id="legend">
<h2>Decay Modes</h2>
<p><span class="box stable"></span> Stable</p>
<p><span class="box a"></span> α</p>
<p><span class="box bminus"></span> β-</p>
<p><span class="box doublebminus"></span> Double β-</p>
<p><span class="box n"></span> Neutron emission</p>
<p><span class="box bplus"></span> β+ or electron capture</p>
<p><span class="box doublebplus"></span> Double β+ or double electron capture</p>
<p><span class="box ec"></span> Electron capture only</p>
<p><span class="box p"></span> Proton emission</p>
<p><span class="box sf"></span> Spontaneous fission</p>
</div>
</body>
</html>