Hong-Phuc Bui
2025-01-16 2889de7f0c2d587a17fbd322af57c29e84238620
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
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>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="argv" name="argv"/>
    <button name="run" id="run">Plot</button>
</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="ifs.js" type="module"></script>
 
</body>
</html>