-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgameMockup.html
53 lines (48 loc) · 1.6 KB
/
gameMockup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Music Game Mockup</title>
<style type="text/css">
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/resources/dojo.css";
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5/dijit/themes/claro/claro.css";
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojox/grid/resources/Grid.css";
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojox/grid/resources/claroGrid.css";
html, body, .dijitBorderContainer {
width:100%;
height:100%;
}
#activity {
height:100%;
width:50%;
margin-left:auto;
margin-right:auto;
text-align:center;
}
.keyblock {
display:inline-block;
width:50px;
height:50px;
border:2px outset #CCCCCC;
vertical-align:middle;
}
.pressed {
background:#3BB9FF;
}
</style>
<script type="text/javascript">
var djConfig = {
isDebug: false,
parseOnLoad: true,
baseUrl: './',
modulePaths: { 'widgets' : 'widgets' }
};
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/dojo.xd.js"></script>
<script type="text/javascript" src="/libs/uow.js"></script>
<script type="text/javascript" src="gameMockup.js"></script>
</head>
<body class="claro">
<div id="activity"></div>
</body>
</html>