-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (80 loc) · 3.49 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<!-- CopyRight (c) Ability Spectrum 2014
2014-February-13
This document maybe used in its entirety, without change, freely as long as this notice is preserved -->
<html>
<head>
<title>CommBoard by Ability Spectrum (c) 2014-2019 v1.2</title>
<!-- allows Add to Home Screen in Chrome -->
<meta name="viewport" content="width=device-width">
<meta name="mobile-web-app-capable" content="yes">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="icon" sizes="192x192" href="/icon.png">
<link rel="manifest" href="manifest.json">
<LINK REL=StyleSheet HREF="./cbstyle.css" TYPE="text/css" MEDIA=screen>
<link rel="stylesheet" href="./jquery/jquery-ui.css">
<script src="./jquery/jquery-1.10.2.js"></script>
<script src="./jquery/jquery-ui.js"></script>
<script src="./cbmenus.js"></script>
<script src="./commboard.js"></script>
</head>
<body onload="CB.getStarted();">
<div class="sansserif" id="container" tabindex="-1">
<div id="content" onkeydown="CB.keyReceived();">
<!-- <script>chrome.tts.speak('Hello, world.');</script> -->
</div>
<div id="header" tabindex="-1" style="background-color:#FFA500;">
<div id="testButton" tabindex="-1">
<button onclick="CB.testMe();">TEST</button>
</div>
</div>
<div id="menu" tabindex="-1">
<input type='button' id="pauseButton" onclick="CB.pauseOnOff();" value="START" tabindex="-1"></input>
<input type='button' id="soundButton" onclick="CB.soundOnOff();" value="SOUND ON" tabindex="-1"></input>
<input type='button' id="selectButton" onclick="CB.selected();" value="SELECT" tabindex="-1"></input>
<input type='button' id="langButton" onclick="CB.lang();" value="LANG" tabindex="-1"></input>
<!-- <input type='button' id="setupButton" onclick="CB.setUp();" value="SETUP" tabindex="-1"></input>
--->
<div style="float:right">
<div id="slider-value">2000</div>
<div id="slider" style=" width: 250px; "></div>
</div>
</div>
<div style="clear:both;"></div>
<div id="timeDisplay" tabindex="-1">time</div>
<div id="clientTxt" tabindex="-1">clientTxt</div>
<div id="logo">
<b>CommBoard</b>
<br>
<small tabindex="-1">by
<b>Ability Spectrum</b>
</small>
</div>
<div style="clear:both;"></div>
<div id="debug" tabindex="-1">
<small>[Debug]</small>
</div>
<div style="clear:both;"></div>
<audio id="ding" tabindex="-1" src='./img/ding3.mp3'></audio>
<div id="videoSetUp" tabindex="-1"></div>
<div id="audioclass" tabindex="-1"></div>
<!--
<audio controls autoplay="autoplay">
<source src="http://translate.google.com/translate_tts?tl=fr&q=accueil" type="audio/mpeg">
</audio>
-->
<script>
//
// (function () {
// var audioElement2 = document.createElement('audio');
// audioElement2.setAttribute('src', 'http://translate.google.com/translate_tts?tl=fr&q=bienvenu');
// audioElement2.controls = true;
// audioElement2.loop = false;
// audioElement2.load();
// audioElement2.play();
//
// })();
</script>
</div>
</body>
</html>