-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
97 lines (95 loc) · 2.98 KB
/
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
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
@font-face {
font-family: "Computer Modern";
src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf');
}
@font-face {
font-family: "Computer Modern";
src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunsx.otf');
font-weight: bold;
}
@font-face {
font-family: "Computer Modern";
src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunsi.otf');
font-style: italic, oblique;
}
@font-face {
font-family: "Computer Modern";
src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunbxo.otf');
font-weight: bold;
font-style: italic, oblique;
}
body {
font-family: "Computer Modern", sans-serif;
}
</style>
<title>Populate</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="banner">
<div id="banner-content">
Populate
</div>
</div>
<div id="workspace">
<div id="circBound">
<div id="populationCirc"> <div id="populationText">n=100</div>
</div>
<div id="willchange"> NO CHANGE
</div>
</div>
<div id="optionsBox">
<div id="information">
<div id="technical"> Technical:
</div>
<div id="currscaling"> Current Scaling: 1:1
</div>
<div id="timegen"> Time/Generation:
<button type="button" id="add" class="add">+</button>
<div id="intervaldisplay">3s</div>
<button type="button" id="sub" class="sub">-</button>
</div>
</div>
<div id="information">
<div id="newpop"> New Population:
</div>
n: <input type="text" name="newn" id="newn" placeholder = "100"/>
p: <input type="text" name="newp" id="newp" placeholder = "0.5"/>
q: <input type="text" name="newq" id="newq" placeholder = "0.5"/>
<button type="button" id="createnew" class="createnew">Create New</button>
</div>
<div id="information">
<div id="modifiers"> Modifiers: </div>
<div id="intervaldeath">Death by: gen 3</div>
</div>
<div id="information">
<div id="gennumber"> Generation 1:
</div>
<div id="popnumber"> n = 100
</div>
<div id="popgender"> ♂♀ = 0.50/0.50
</div>
<div id="pfreq"> p = 0.29
</div>
<div id="qfreq"> q = 0.71
</div>
<div id="newgen"> N/A
</div>
<div id="deathgen"> N/A
</div>
</div>
<div>
<button type="button" id="togglerun" class = "togglerun">Pause</button>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="main.js"></script>
<footer>
Created by: Justin Ang
</footer>
</body>
</html>