-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplet_test.html
More file actions
57 lines (42 loc) · 1.52 KB
/
applet_test.html
File metadata and controls
57 lines (42 loc) · 1.52 KB
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
<!DOCTYPE HTML>
<!--
Theory by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html>
<head>
<title>Ising Model Applet</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<script type="text/javascript" src="js_canvas_test.js"></script>
</head>
<body class="subpage" onload="draw();">
<!-- Header -->
<header id="header">
<div class="inner">
<a href="physics-adventures.html" class="logo">Back to Physics++ Adventures</a>
<a href="#navPanel" class="navPanelToggle"><span class="fa fa-bars"></span></a>
</div>
</header>
<!-- Three -->
<section id="three" class="wrapper">
<div class="inner">
<header class="align-center">
<h2>The Ising Model</h2>
<p>Gateway drug to the world of criticality</p>
</header>
<h3>Plot Test</h3>
<p> Here I'm just checking to see if I can make a simple 2D plot work. </p>
<canvas id="canvas1" width="800" height="600"></canvas>
<h3>Plot Test</h3>
<p> Now I'm trying to make a colormap plotting widget.</p>
<canvas id="canvas2" width="800" height="600"></canvas>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>