-
Notifications
You must be signed in to change notification settings - Fork 0
/
sounds.html
91 lines (80 loc) · 3.5 KB
/
sounds.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>
<script src="js/waud.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" style="display:none;">
<option value="30" selected>30</option>
<option value="60">60</option>
<option value="90">90</option>
</select>
<select id="timer" style="">
<!-- <option value="0.1" selected>0.1m</option> -->
<option value="1">1m</option>
<option value="5" selected>5m</option>
<option value="10">10m</option>
<option value="15">15m</option>
<option value="20">20m</option>
<option value="25">25m</option>
<option value="30">30m</option>
<option value="45">45m</option>
<option value="60">60m</option>
<option value="75">1h15m</option>
<option value="90">1h30m</option>
</select>
row
<select id="myRow" style="">
<!-- <option value="0.1" selected>0.1m</option> -->
<option value="5" selected>5 sfx</option>
<option value="10">10 sfx</option>
</select>
<script type="text/javascript">bShowName=0;</script>
show name <input type="checkbox" onclick="bShowName=!bShowName;">
<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\nImages by time: rows recall are from 0 to 4 or 0 to 9\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>
<div style="position: fixed; bottom: 0px; height: 50px; width: 100%" id="answer-control">
<input type="button" value="answer" id="answer-btn-2" onclick="answer();" style="float: right; margin-right: 10px; zoom: 2;">
</div>
<script src="js/app/sounds.js"></script>
<script src="js/controller.js"></script>
</body>
</html>