-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqr.html
More file actions
27 lines (26 loc) · 782 Bytes
/
qr.html
File metadata and controls
27 lines (26 loc) · 782 Bytes
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta http-equiv="content-security-policy" content="upgrade-insecure-requests">
<title>二维码识别</title>
<meta name="viewport"
content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<style>
#iframe1{
border: none;
overflow: hidden;
transform: translate(-5px,-200px);
}
</style>
<link rel="stylesheet" href="./no.css">
<script src="../../Desktop/catvod/Release/data/flutter_assets/asset/js/tuxiaobei_open.js"></script>
</head>
<body>
<div id="con">
<iframe id="iframe1" src="https://www.lddgo.net/image/qrcodescanner" frameborder="0" scrolling="no"
width="500" height="600"
></iframe>
</div>
</body>
</html>