-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpopup.html
33 lines (30 loc) · 982 Bytes
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>
KKtix搶票機器人
</title>
<link rel="stylesheet" type="text/css" href="popup.css" />
</head>
<body>
<form action="javascript:" id="setting">
<h4>活動名稱:<span></span></h4>
<p>
<label>
重新整理間格<input type="number" class="number" name="wait" value="5" />秒
</label>
</p>
<p>
有票時撥放音效:<input type="url" name="audio" class="text" style="width:200px;" value="http://taira-komori.jpn.org/sound_os/arms01/explosion2.mp3" /> <input type="checkbox" name="audioLoop" checked="checked" />重覆
</p>
<div id="except"></div>
<p style="text-align:right;">
<input type="button" class="button cancel" value="停止機器人" />
<input type="submit" class="button submit" value="啟動機器人" />
</p>
</form>
</body>
<script src="jquery.js"></script>
<script src="popup.js"></script>
</html>