-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (21 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Reference Potential Calculator</title>
<meta name="author" content="andigandhi">
<meta name="description" content="A little tool to convert between different reference potentials">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>Reference Potential Calculator</h1>
<input type="range" id="phSlide" value="70" min="0" max="140" oninput="phTxt.value = phSlide.value/10; calculate(0);">
<input id="phTxt" value="7" class="inputFields" oninput="calculate(0)"></input><br><br><br><br>
<label for="rhe">RHE</label><input id="rhe" class="inputFields" value= "0" oninput="calculate(1)">V<br><br>
<label for="she">SHE</label><input id="she" class="inputFields" oninput="calculate(2)">V<br><br>
<label for="ssc">SSC / Ag/AgCl</label><input id="ssc" class="inputFields" oninput="calculate(3)">V<br><br>
<label for="li">vs. Li</label><input id="li" class="inputFields" oninput="calculate(4)">V<br><br>
<label for="na">vs. Na</label><input id="na" class="inputFields" oninput="calculate(5)">V<br><br>
<script src="calculate.js"></script>
</body>
</html>