forked from kazu80/SaftyDrive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (49 loc) · 2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>When shredding dried leeks, be sure they are room temperature.</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/css/materialize.min.css">
<!-- vehicle api 必須 : ここから
<script src="http://52.193.60.25:3000/socket.io/socket.io.js"></script>
<script src="http://52.193.60.25:3000/www/js/vehicleAPI.js"></script>
<script src="http://52.193.60.25:3000/www/js/vehicleAPI-client.js"></script>
-->
<!-- http://13.112.91.95/ -->
<script src="http://13.112.91.95:3000/socket.io/socket.io.js"></script>
<script src="http://13.112.91.95:3000/www/js/vehicleAPI.js"></script>
<script src="http://13.112.91.95:3000/www/js/vehicleAPI-client.js"></script>
<script>
//var roomID = "[email protected]"; //ユニークな文字列に変更して下さい
var roomID = "team_a";
window.onload = function () {
//document.getElementById("WSRoomID").innerHTML = roomID;
var msg = {"roomID": roomID, "data": "NOT REQUIRED"};
socket.emit ('joinRoom', JSON.stringify (msg));
}
</script>
<!-- vehicle api 必須 : ここまで -->
<style>
html {
font-size : 62.5%;
}
body {
position: absolute;
left: 0;
right: 0;
bottom: 0;
margin: 0;
font-family : GillSans, Calibri, Trebuchet, -apple-system, BlinkMacSystemFont, 游ゴシック, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Noto Sans Japanese", "Noto Sans CJK JP", sans-serif;
color: #fff;
}
</style>
</head>
<body>
<div id="app" class="app">
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/js/materialize.min.js"></script>
</body>
</html>