<html lang="en">
|
<head>
|
<meta charset="UTF-8">
|
<title>noneblock-ifs</title>
|
<link rel="stylesheet" href="lib/dom-output.css"/>
|
<link rel="stylesheet" href="lib/dfhi.css"/>
|
<link rel="stylesheet" href="lib/dfhi-plot.css"/>
|
</head>
|
<body>
|
|
<div>
|
<p>
|
IFS <br/>
|
Input a number each time, something like 10, 100, an so on. Then try to guest,
|
what plotted is.
|
</p>
|
<input type="text" id="num-of-point" name="argv"/>
|
<button name="run" id="run">Plot</button>
|
<span id="count-plotted-point">0</span> of <span id="max-plotted-point">0</span>
|
</div>
|
|
<div class="row">
|
<div id="plotter-container" class="column">
|
<div class="jxgbox" id="plotter"></div>
|
<div>
|
<button id="export">Export to SVG</button>
|
</div>
|
</div>
|
<div id="text-output-container" class="column">
|
<pre id="text-output"></pre>
|
</div>
|
</div>
|
|
|
<script src="nonblock-ifs.js" type="module"></script>
|
|
</body>
|
</html>
|