-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemperature.html
More file actions
26 lines (19 loc) · 975 Bytes
/
temperature.html
File metadata and controls
26 lines (19 loc) · 975 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Azimuth simple climate models - temperature</title>
<link rel="stylesheet" href="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraph.css" />
<script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=default"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jsxgraph/0.93/jsxgraphcore.js"></script>
<script src="./js/temperature.js"></script>
</head>
<body onload="initCharts('temperature-box', 'control-box')">
<h1>Temperature dynamics</h1>
<div id="temperature-charts" style="position:relative; width:800px;">
<p>Temperature \(T_\text{eq}\) for \(t\) between 0 and 2 years out.</p>
<div id="temperature-box" class="jxgbox" style="width:800px; height:400px;"></div>
<div id="control-box" class="jxgbox" style="width:400px; height:150px; position:absolute; top:450px; left:0px;">
</div>
</body>
</html>