-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 931 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>QRcode-with-logo</title>
</head>
<body>
<canvas id="canvas"></canvas>
<script src="QRcode-with-logo.js"></script>
<script>
let qrcode = new QrCodeWithLogo({
canvas: document.getElementById("canvas"),
content: "I wanna know what it's like to spend the whole night w u",
width: 500,
// download: true,
// image: document.getElementById("image"),
logo: {
src: "cat.png"
}
});
qrcode.toCanvas().then(() => {
// qrcode.toImage().then(() => {
// setTimeout(() => {
// qrcode.downloadImage("hello world");
// }, 2000);
// });
});
</script>
</body>
</html>