-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (101 loc) · 2.54 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
103
104
105
106
107
108
109
<html>
<head>
<title>
tomato clock
</title>
<style type="text/css" media="screen">
body {
background-color: black;
}
#content {
margin:0px auto;
width:500px;
height:auto;
}
#tomato {
width: 500px;
height:400px;
text-align:center;
background-color:lightyellow;
}
#tomato span {
height: 100px;
line-height: 400px;
font-size:88px;
font-weight:bolder;
color: orange;
}
button {
width: 100px;
height: 30px;
}
input {
width: 100px;
height:100px;
font-size: 88px;
color: orange;
}
</style>
</head>
<body>
<div id="content">
<div id="tomato">
<span id="hour">00</span>
<span> :</span>
<span id="minute">00</span>
<span> :</span>
<span id="second">00</span>
</div>
<div id="toolbar">
<button id="settingBtn">Setting</button>
<button id="clearBtn">Clear</button>
<button id="goBtn">Go!!</button>
</div>
</div>
<script type="text/javascript" src="javascript/jquery-1.8.0.min.js"></script>
<script type="text/javascript" src="javascript/socket.io.js"></script>
<script type="text/javascript">
$(function() {
var ws = io.connect('http://localhost:3000/');
ws.on('message', function(data) {
console.log(data);
});
ws.on('serverTime', function(data) {
setTime(data[0], data[1], data[2]);
});
$("#clearBtn").on('click', function() {
clearTime();
ws.emit('clearTime');
});
$("#settingBtn").on('click', function() {
inputTime();
})
$("#goBtn").on('click', function() {
var hours = $('input[name="hour"]').val() || 0;
var minutes = $('input[name="minute"]').val() || 0;
var seconds = $('input[name="second"]').val() || 0;
console.log("send ==>", hours, minutes, seconds);
ws.emit('setTime', [hours, minutes, seconds]);
})
});
function setTime(hour, minute, second) {
function wrapper(num) {
return (num < 10) ? "0" + num : num;
}
$("#hour").text(wrapper(hour));
$("#minute").text(wrapper(minute));
$("#second").text(wrapper(second));
}
function clearTime() {
$("#hour").text("00");
$("#minute").text("00");
$("#second").text("00");
}
function inputTime() {
$("#hour").html('<input type="text" name="hour">');
$("#minute").html('<input type="text" name="minute">');
$("#second").html('<input type="text" name="second">');
}
</script>
</body>
</html>