72 lines
3.0 KiB
HTML
72 lines
3.0 KiB
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
|
<title>Atoms</title>
|
|
<link rel="icon" href="./resources/static/favicon.ico">
|
|
<link rel="stylesheet" href="./index.css">
|
|
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
|
</head>
|
|
<body>
|
|
<div class="pulltab first"><p class="tDesc">Elements</p></div>
|
|
<div class="sidebar elements">
|
|
<i class="fa fa-close"></i>
|
|
<div class="legendholder"></div>
|
|
</div>
|
|
|
|
<div class="pulltab second"><p class="tDesc">Settings</p></div>
|
|
<div class="sidebar settings">
|
|
<i class="fa fa-close"></i>
|
|
<div><p class="desc" title="Change the Color Scheme of the site">Background Theme</p><div class=option id="theme"></div></div>
|
|
<div><p class="desc" title="Change what color represents in the Periodic Table and the atoms">Display Theme</p><div class=option id="displayTheme"></div></div>
|
|
<div><p class="desc" title="Style of Electron Configuration">Electron Configuration</p><div class=option id="elecConf"></div></div>
|
|
<div><p class="desc" title="Units to display Temperatures">Units</p><div class=option id="unit"></div></div>
|
|
<div class='about'>
|
|
<p>Developed by Kenneth Jao and Yaman Qalieh</p>
|
|
<a class="github" target="_blank" href="https://github.com/ksjdragon/atoms">Github</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="workspace"></div>
|
|
</body>
|
|
<script type='text/javascript' >
|
|
var settings = {};
|
|
var info;
|
|
var options = ["theme","displayTheme","elecConf","unit"];
|
|
|
|
var choices = [
|
|
["light","dark"],
|
|
["category", "atomRadi", "moleWeig", "ioniEner", "elecAffi", "elecNega", "density", "melting","boiling"],
|
|
["abr","norm"],
|
|
["K","C","F"]
|
|
];
|
|
var choicesDisplay = [
|
|
["Light","Dark"],
|
|
["Region", "Atomic Radius", "Molecular Mass", "Ionization Energy", "Electron Affinity", "Electronegativity", "Density", "Melting Point", "Boiling Point"],
|
|
["Abbreviated","Full"],
|
|
["Kelvin","Celsius","Fahrenheit"]
|
|
];
|
|
|
|
var colorChart = {
|
|
"category": {"al":'#8EF02B',"ae":"#D77A1D","md":"#387290","nm":"#52BFF6","ha":"#4842E9","ng":"#7B1AE9","tm":"#E5D439",
|
|
"bm":"#2ADEA8","lh":"#F02BBC","ac":"#D78A8A"},
|
|
"atomRadi": ["#151618", "#2C7BF2"],
|
|
"moleWeig": ["#151618", "#2C7BF2"],
|
|
"ioniEner":["#E2DC27", "#5535D4"],
|
|
"elecAffi": ["#E2DC27", "#5535D4"],
|
|
"elecNega": ["#E2DC27","#5535D4"],
|
|
"density": ["#151618", "#2C7BF2"],
|
|
"melting": ["#D7301E", "#69F2F2"],
|
|
"boiling": ["#D7301E", "#69F2F2"]
|
|
};
|
|
</script>
|
|
<script src="./js/main.js"></script>
|
|
<script src="./js/backend.js"></script>
|
|
<script src="./js/buttons.js"></script>
|
|
<script src="./js/reactive.js"></script>
|
|
<script src="./js/settings.js"></script>
|
|
<!--<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-scrollTo/2.1.1/jquery.scrollTo.js"></script>
|
|
-->
|
|
</html> |