-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
69 lines (54 loc) · 1.2 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
69
<!DOCTYPE html>
<html>
<head>
<title>popup页</title>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
html {
width: 200px
}
.flex {
display: grid;
grid-template-columns: repeat(1, 1fr);
align-content: center;
align-items: center;
}
.btn {
border-radius: 5px;
cursor: pointer;
width: 100px;
margin: 5px auto;
padding: 10px;
text-align: center;
font-size: 16px;
align-items: center;
color: #fff;
background: #09f;
border: none
}
.btn:hover {
background: #ffa805;
}
.center {
text-align: center;
color: #cf2e2e;
padding: 10px;
}
</style>
</head>
<body>
<div class="center"><span>👻</span>清除水印插件<span style="transform: rotate(-45deg);">👻</span></div>
<div class="flex">
<button class="btn" id="test">清除水印</button>
<button class="btn" id="do">生成图片(内测中)</button>
</div>
</div>
<script type="text/javascript" src="js/jquery-1.8.3.js"></script>
<script type="text/javascript" src="js/popup.js"></script>
<script type="text/javascript" src="js/html2canvas.js"></script>
<script>
console.log(html2canvas)
</script>
</body>
</html>