forked from intel/webapps-flashcards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (82 loc) · 2.59 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
<!DOCTYPE HTML>
<!--
* Copyright (c) 2012, Intel Corporation.
*
* This program is licensed under the terms and conditions of the
* Apache License, version 2.0. The full text of the Apache License is at
* http://www.apache.org/licenses/LICENSE-2.0
*
-->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<meta id="viewport_meta" name="viewport" content="" />
<script type="text/javascript">
var viewport_meta = document.getElementById('viewport_meta');
var w = screen.availWidth;
var h = screen.availHeight;
viewport_meta.setAttribute('content','width='+w+', height='+h+',user-scalable=no');
</script>
<title id="app-name"></title>
<link rel="stylesheet" href="css/flashcards.css"/>
<link rel="stylesheet" href="css/license.css"/>
</head>
<body>
<div id="licensepage" style="display: none">
<div id="licensetext"><div id="licensescroll"></div></div>
<div id="licensebtnq" class="licensebtn">Back</div>
</div>
<div id="splash-screen">
<div id="adventure-ribbon-tail"></div>
<div id="adventure-ribbon"></div>
<div id="flash-title"></div>
<div id="cards-ribbon-tail"></div>
<div id="cards-ribbon"></div>
<div id="play-button"></div>
<div id="licensebtnl" style="top: 540px; left: 945px;"> i </div>
</div>
<div id="game-screen">
<div id="nav-pane-compass"></div>
<div id="rope-bottom"></div>
<div id="card-stack"></div>
<div id="card">
<div id="card-graphic"></div>
</div>
<div id="rope-top"></div>
<div id="answer">
<div id="card-answer"></div>
<div id="wrong-button"></div>
<div id="right-button"></div>
</div>
<div id="endgame-prompt"></div>
<div id="replay-button" ></div>
<div id="nav-pane" class="animation-open">
<div id="nav-flag"></div>
<div id="nav-pane-tent"></div>
<div id="scroll-overlay">
<div id="scroll-items">
<div id="shape-deck"></div>
<div id="color-deck"></div>
<div id="counting-deck"></div>
<div id="spanish-deck"></div>
</div>
</div>
<div id="score">
<div id="score-text"></div>
<div id="score-number"></div>
</div>
</div>
<div id="help-icon"></div>
<div id="help-dialog">
<div id="smoke-screen"></div>
<div id="help-card"></div>
<div id="help-text"></div>
<div id="help-close">X</div>
</div>
</div>
<script src="js/license.js"></script>
<script src="js/getMessage.js"></script>
<script src="js/sound.js"></script>
<script src="js/flashcards.js"></script>
</body>
</html>