-
Notifications
You must be signed in to change notification settings - Fork 0
/
decimal.html
91 lines (76 loc) · 2.83 KB
/
decimal.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>MemoryDB! v0.4</title>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/underscore-min.js"></script>
<style type="text/css">
.myImage{
max-height: 600px;
min-height: 64px;
}
</style>
</head>
<body>
<!--<h1>Hello World!</h1>-->
<a href="#" onclick="location.reload();">MemoryDb</a>
<span id="menu-modules"></span>
<input type="button" value="start" id="start-btn" onclick="console.log(1); play();">
<select id="tipo">
<option value="0" selected>Decimal</option>
<option value="1">Binary</option>
</select>
<span id="bin-span">
<select id="tipoBin">
<option value="3x2" selected>3x2</option>
<option value="4x2">4x2</option>
<option value="3x3">3x3</option>
</select>
</span>
<span id="dec-span">
<select id="cifras">
<option value="0">1 digit</option>
<option value="1" selected>2 digit</option>
<option value="2">3 digit</option>
<option value="3">4 digit</option>
</select>
<input type="number" value="0" id="limiteIzq" style="width: 40px;"> to <input type="number" value="99" id="limiteDer" style="width: 40px;">
</span>
<select id="tiempo">
<option value="5" selected>5 min</option>
<option value="15">15 min</option>
<option value="30">30 min</option>
<option value="60">60 min</option>
</select>
<input type="button" value="config" id="config-btn" onclick="config();">
<a href="#" onclick="help();">
[?]
</a>
<input type="button" value="Recall" id="recall-btn" onclick="recall();">
<input type="button" value="Answer" id="answer-btn" onclick="answer();">
<div style="position: fixed; right: 2px; top: 7px;">
<span>
<div style="float: left; width: 10px; heigth: 10px; background-color: gray; border:1px solid black;" onclick="$('body').css('background-color','gray');"> </div>
<div style="float: left; width: 10px; heigth: 10px; background-color: white; border:1px solid black; margin-left: 2px;" onclick="$('body').css('background-color','white');"> </div>
</span>
</div>
<span id="results-span"></span>
<br>
<div id="screen"></div>
<!-- All of the Node.js APIs are available in this renderer process. -->
<!--
We are using nodess <script>document.write(process.versions.node)</script>,
Chromium <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
<a href="#" id="select-directory">select</a>
<a href="#" id="close-btn">close</a>
<div id="selected-file"></div>
<br>
-->
<div id="screen"></div>
<div id="preload"></div>
<script src="js/controller.js"></script>
<script src="js/app/decimal.js"></script>
</body>
</html>