-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpopup.html
68 lines (61 loc) · 2.12 KB
/
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
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
<!doctype html>
<html>
<head>
<title>Auto Type</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://bootswatch.com/3/paper/bootstrap.min.css">
<script src="jquery-2.2.4.min.js"></script>
<script src="bootstrap-tooltip.js"></script>
<script src="popup.js"></script>
<style>
input {
text-align: center;
}
.panel {
border-radius: 0 0 5px 5px;
margin: 0 !important;
padding: 0 !important;
}
.panel-heading {
border-radius: 5px 5px 0 0;
}
.panel-body {
margin-bottom: 10px;
}
.tooltip-inner {
line-height: 100%
}
</style>
</head>
<body style="padding: 0 10px 10px 10px; text-align:center; min-width:200px;">
<h3>Auto Type</h3>
<div class="panel panel-info">
<div class="panel-heading">
<h3 data-toggle="tooltip"
title="The rate is limited to 1000 WPM because typing.com cannot handle more without issues."
class="panel-title">Speed</h3>
</div>
<div class="panel-body">
<div class="input-group">
<input type="number" id="speed" min="1" max="1000" class="form-control"></input>
<span class="input-group-addon">WPM</span>
</div>
</div>
</div>
<!--<div class="panel panel-info">
<div class="panel-heading">
<h3 data-toggle="tooltip" title="This feature is not currently working properly, try to avoid it or set the accuracy as close to 100% as possible to avoid issues" class="panel-title">Accuracy</h3>
</div>
<div class="panel-body">
<div class="input-group">
<input type="number" id="accuracy" min="50" max="100" class="form-control"></input>
<span class="input-group-addon">%</span>
</div>
</div>
</div>
-->
<button id="stop" class="btn btn-danger">Stop</button>
<button id="start" class="btn btn-success">Start</button>
</body>
</html>