-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
40 lines (39 loc) · 981 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
36
37
38
39
40
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Generate QR code</title>
<style>
.container{
padding:10px;
font-size:14px;
}
.qr{
width:200px;
height:200px;
background-color:#EFEFEF;
margin:10px 0;
}
.title{
font-size:14px;
width:200px;
overflow:hidden;
white-space:pre-wrap;
word-break:break-all;
}
.b{
font-weight:bold;
}
</style>
</head>
<body>
<div class="container">
<div id="page_title" class="title b">Page Title</div>
<div id="qr" class="qr"></div>
<div id="page_url" class="title">Page URL</div>
</div>
</body>
<script type="text/javascript" src="script/jquery.min.js"></script>
<script type="text/javascript" src="script/qrcode.js"></script>
<script type="text/javascript" src="script/popup.js"></script>
</html>