forked from thangdc/autoscroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
35 lines (35 loc) · 962 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
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
.slider {
-webkit-appearance: none;
width: 100%;
height: 15px;
border-radius: 5px;
background: #d3d3d3;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.mg-15 { margin: 15px 0; }
</style>
</head>
<body>
<div style="width: 240px;">
<div>
<div style="float: left;">Nhanh</div>
<div style="float: right;">Chậm</div>
<br style="clear: both;"/>
</div>
<div class='mg-15'><input id='tbxTimeout' class='slider' type="range" min="1" max="100" value="25" /></div>
<div class='mg-15'>
Nhấn phím 's' để tạm dừng hoặc tiếp tục.<!--: <input id='tbxShortcut' style='float: right; width: 20px;' type='text' value='s'/>-->
<br style="clear: both;"/>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>