-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpopup.html
63 lines (63 loc) · 1.3 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
<!doctype html>
<html>
<head>
<title>myVideos---By AInoob~~~</title>
<style>
body{
background-color: #93CD41;
}
.logo{
float: left;
width: 150px;
height: 72px;
}
.click_block{
background-color: #337D01;
font-size: 20px;
color: white;
height: 30px;
border-radius: 11px;
border: 2px solid #73AD21;
margin-top:
}
.fullWidth{
width: 280px;
}
.halfWidth{
width: 140px;
}
.thirdWidth{
width: 91px;
}
.floatLeft{
float: left;
}
#theData{
height:100px;
width:600px;
}
#theResult{
height:380px;
width:600px;
}
</style>
<script src="thirdParty/jquery.min.js"></script>
<script src="js/popup.js"></script>
</head>
<body>
<div id="done">
</div>
<div>
<button id="update" class="click_block halfWidth">Update</button>
<button id="reset" class="click_block halfWidth">Reset</button>
<input type="checkbox" id="pureData" checked="false" /> Pure Data?
<input type="checkbox" id="averageBp" checked="false" /> Average series BP?
</div>
UpdateTime:<input id='updateTime'></input>
RemainNumber<input id='remainNumber'></input>
<br />
<textarea id="theData"></textarea>
<table id="theTable"></table>
<textarea id="theResult"></textarea>
</body>
</html>