43 lines
1014 B
HTML
43 lines
1014 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=1800, height=3200, initial-scale=1">
|
|
<title>Private QR Scanner 10-inch Tablet Screenshots</title>
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
width: 1800px;
|
|
height: 3200px;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
background: #f6fbfa;
|
|
}
|
|
|
|
iframe {
|
|
position: absolute;
|
|
inset: 0 auto auto 0;
|
|
width: 1440px;
|
|
height: 2560px;
|
|
border: 0;
|
|
transform: scale(1.25);
|
|
transform-origin: top left;
|
|
pointer-events: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<iframe id="source" title="Private QR Scanner screenshot source"></iframe>
|
|
<script>
|
|
const params = new URLSearchParams(window.location.search);
|
|
const screen = params.get("screen") || "1";
|
|
document.getElementById("source").src =
|
|
`private-qr-scanner-7in-tablet-screenshots.html?screen=${encodeURIComponent(screen)}`;
|
|
</script>
|
|
</body>
|
|
</html>
|