-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqr.html
53 lines (50 loc) · 1.35 KB
/
qr.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>qr codes</title>
<meta name="description" content="dfgsdfgsdfg" />
<style>
body {
font-family: system-ui, sans-serif;
}
img {
cursor: pointer;
}
</style>
</head>
<body>
<table>
<tr>
<th>Live game</th>
<th>Website</th>
</tr>
<tr>
<td>
<img src="./images/qr/live.svg" width="256" id="live" />
</td>
<td><img src="./images/qr/web.svg" width="256" id="web" /></td>
</tr>
</table>
<script>
// https://sheeptester.github.io/javascripts/floating-sticky-note.html
document.addEventListener("click", (e) => {
if (e.target.tagName === "IMG") {
const s = e.target.src;
documentPictureInPicture
.requestWindow({
width: 400,
height: 400,
})
.then((w) => {
w.document.body.style.backgroundImage = `url(${s})`;
w.document.body.style.backgroundRepeat = "no-repeat";
w.document.body.style.backgroundPosition = "center";
w.document.body.style.backgroundSize = "contain";
});
}
});
</script>
</body>
</html>