-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
106 lines (106 loc) · 2.35 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>Skype 自动回复</title>
<meta charset="utf-8">
<style>
body {
width: 300px;
height: 225px;
}
input,
textarea,
select,
button,
span {
font-family: 'HelveticaNeue', 'Arial', sans-serif;
font-size: 18px;
}
#form {
width: 300px;
margin: 10px auto;
background: #ffffff;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
div.form-item {
margin-bottom: 20px;
text-align: center;
}
input.form-style,
select.form-style,
textarea.form-style {
color: #8a8a8a;
width: 260px;
height: 24px;
padding: 5px 20px;
border: 1px solid #ccc;
border-radius: 10px;
background-color: #fff;
letter-spacing: .8px;
}
input[type=range] {
padding: 0px;
width: 280px;
}
textarea {
resize: none;
height: 150px !important;
}
select {
height: 35px !important;
width: 280px !important;
}
div.form-item .form-style:focus {
outline: none;
border: 1px solid #58bff6;
color: #58bff6;
}
button {
width: 300px;
height: 37px;
border-radius: 10px;
background-color: #55b1df;
border: none;
color: #fff;
margin-bottom: 15px;
}
button:hover {
background-color: #fff;
border: 1px solid #55b1df;
color: #55b1df;
cursor: pointer;
}
#status {
text-align: center;
font-size: 16px;
}
</style>
</head>
<body>
<div id="form">
<div class="form-item">
<input class="form-style" id="loopDelay" value="" placeholder="循环时间/秒">
</div>
<div class="form-item">
<input class="form-style" id="setVolume" type="range" min="0" max="100" value="50" placeholder="音量">
</div>
<div class="form-item">
<textarea class="form-style" id="content" placeholder="需要回复的内容">「自动回复」</textarea>
</div>
<div class="form-item">
<hr>
</div>
<div class="form-item">
<input class="form-style" id="sheetUrl" value="" placeholder="表格链接">
</div>
<div class="form-item">
<button id="sendMessage">批量发送</button>
<p id="status"></p>
</div>
</div>
<script src="js/popup.js"></script>
</body>
</html>