Mercurial > hg > nodescore
diff www/m/slides.html @ 42:49c94f63b8b0
css for nexus 7 and associated files- archive m.a added - remove later
author | tzara <rc-web@kiben.net> |
---|---|
date | Tue, 04 Sep 2012 07:25:49 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/www/m/slides.html Tue Sep 04 07:25:49 2012 +0000 @@ -0,0 +1,103 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="UTF-8"> + <title>score@nodescore</title> + + <link rel="shortcut icon" href="/kiben_favicon.ico" type="image/x-icon" /> + + <link href="css/nodescore-tablet.css" rel="stylesheet"> + <link href="css/chat-tablet.css" rel="stylesheet"> + <link href="css/menu.css" rel="stylesheet"> + + <script src="js/jquery-1.7.1.min.js"></script> + <script src="/socket.io/socket.io.js"></script> + <script src="js/nodescore-slides.js"></script> + + +</head> + +<body> + + <input type="hidden" id="group" value='1'> + <div class="outermaster"> + + <div id="live"> </div> + + <div id="info"> + <div id="comms"> + <div id="chat" title="type here to chat with others connected to network" > + <div id="nickname" title="type your login name and press enter" > + <form id="set-nickname" class="wrap"> + <p>LOGIN:</p> + <input id="nick"> + <p id="nickname-err">Nickname already in use</p> + </form> + </div> + <div id="connecting"> + <div class="wrap">Connecting to socket.io server</div> + </div> + <div id="messages"> + <div id="nicknames"></div> + <div id="lines"></div> + </div> + <form id="send-message"> + <input id="message"> + <button>Send</button> + </form> + </div> + </div> + + <div id="midfoot"> + + <div id="midcomms"> + <div id="counttitle" style="display:inline;"></div> + <div id="count" style="color:white"></div> + </div> + + <div id="remainingtime"> + next in: + <div id="totalcountdown">.</div> + </div> + + <div class="metrocase" id="metro"> + <div id="metronome0"></div> + </div> + + <div id="timeinfo"> + + <div id="client_chronometer" style="z-index: 2;">00:00:00.0</div> + <div id="client_latency">Latency: 0ms</div> + </div> + + <div id="current"> + <script type="text/javascript"> + function setPart(sel) { + var value = sel.options[sel.selectedIndex].value; + document.getElementById('group').value=value; + //$('div#current').text('GROUP ' +value).text='value'; + } + </script> + <div> + <select id="setPart" onchange="setPart(this)"> + <option value="1">Part 1</option> + <option value="2">Part 2</option> + <option value="3">Part 3</option> + <option value="4">Part 4</option> + </select> + </div> + </div> + + + </div> + + + <div id="preview"></div> + + </div> + + +</div> + +</body> +</html>