-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpopup.html
More file actions
29 lines (28 loc) · 770 Bytes
/
popup.html
File metadata and controls
29 lines (28 loc) · 770 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link type="text/css" rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/sample.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
<style type="text/css">
.popup-div{
width:300px;
height:200px;
background:#fff;
}
.popup-div-item{
width:280px;
height:30px;
line-height:30px;
float:left;
}
</style>
</head>
<body>
<div class="popup-div">
<div class="popup-div-item"><input type="checkbox" name="checkbox1" value="checkbox1">开启鼠标移动获取页面信息</div>
<div class="popup-div-item"><input type="checkbox" name="checkbox2" value="checkbox2">开启显示所有链接内容</div>
</div>
</body>
</html>