-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1016 Bytes
/
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 lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" id="favicon" href="./img/favicon dark.png" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
<script src="js/script.js" defer></script>
<title>Cobweb</title>
</head>
<body>
<main class="pannel">
<canvas id="diagram"></canvas>
</main>
<aside id="editor" class="pannel">
<h2>Discrete Dynamical System</h2>
<input type="text" id="map-function" placeholder="map function">
<input type="text" id="c" placeholder="c">
<button id="plot-btn">Plot</button>
<h3>Graph Scale</h3>
<input type="number" id="scale" value="4">
<h3>Line Width</h3>
<input type="number" id="line-width" value="2">
<button id="download-btn"><a id="download" download="cobweb diagram.png">Download</a></button>
</aside>
</body>
</html>