-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (54 loc) · 2.3 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
<!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>
<script src="js/routes.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>
<span id="mySelect"></span>
<input type="button" value="start" onclick="startGame();" style="/*font-size: 30px;*/">
<select id="cantidadImg">
<option value="30" selected>30</option>
<option value="60">60</option>
<option value="90">90</option>
</select>
<input type="button" value="recall" onclick="recall();" id="recall-btn" style="font-size: 30px;">
<input type="button" value="answer" onclick="answer();" id="answer-btn" style="font-size: 30px;">
<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>
<span>
<a href="#" onclick="alert('Open Memory Database\nThis software is experimental and may contain errors.\nLicense: MIT\nSource Code: https://github.com/vernetit/OpenMemoryDatabase\nContact: robertchalean@gmail.com');">?</a>
</span>
</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/app/image.js"></script>
<script src="js/controller.js"></script>
</body>
</html>