69 lines
1.6 KiB
HTML
69 lines
1.6 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Energy Levels Plot</title>
|
||
|
<link rel="icon" type="image/x-icon" href="logos/SOLARIS_favicon.png">
|
||
|
<script src="https://cdn.plot.ly/plotly-2.16.1.min.js"></script>
|
||
|
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, user-scalable=0"/>
|
||
|
</head>
|
||
|
|
||
|
<style>
|
||
|
body{
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
background : #6DB33E;
|
||
|
}
|
||
|
.column{
|
||
|
float : left;
|
||
|
width: 650px;
|
||
|
padding: 0px;
|
||
|
}
|
||
|
.row:after {
|
||
|
content: "";
|
||
|
display: table;
|
||
|
clear: both;
|
||
|
}
|
||
|
.plotStyle{
|
||
|
width:650px;
|
||
|
height:600px;
|
||
|
}
|
||
|
hr {
|
||
|
height:4px;
|
||
|
background-color:#F7CF3C;
|
||
|
border-style:none;
|
||
|
border-width:none;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<h1>Energy Levels Plot</h1>
|
||
|
|
||
|
<table>
|
||
|
<tr>
|
||
|
<td style="text-align: right;"> Isotopes Name </td>
|
||
|
<td><Input type="text" style="width:60px" value="18O" id="isotopes_name" enterkeyhint="done"/></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td style="text-align: right;"> Max Ex </td>
|
||
|
<td><Input type="text" style="width:60px" value="6" id="maxEx" enterkeyhint="done"/></td>
|
||
|
<td> MeV</td>
|
||
|
</tr>
|
||
|
<!-- <tr>
|
||
|
<td style="text-align: right;"> PlotRange </td>
|
||
|
<td><Input type="text" style="width:60px" value="6" id="plotRange" enterkeyhint="done"/></td>
|
||
|
<td> fm</td>
|
||
|
</tr> -->
|
||
|
<tr>
|
||
|
<td></td>
|
||
|
<td><button onclick="PlotLevels()" style="width:65px">Plot</button></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
<div id="Plot_Levels" class="plotStyle"></div>
|
||
|
|
||
|
<p></p>
|
||
|
</body>
|
||
|
|
||
|
<script src="EnergyLevelsPlot.js"></script>
|
||
|
|
||
|
</html>
|