-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQR.html
38 lines (38 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>二维码生成器</title>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>
<!--- QR Code CDN -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js"></script>
<!-- Stylesheet -->
<link rel="stylesheet" href="520.css" />
</head>
<body>
<div class="wrapper">
<input type="text" id="userInput" placeholder="输入文字或网址" />
<div class="options">
<select class="sizeOptions">
<option value="100" selected>100 x 100</option>
<option value="200">200 x 200</option>
<option value="300">300 x 300</option>
</select>
<input type="color" id="BGColor" class="color-inp" />
<input type="color" id="FGColor" class="color-inp" />
</div>
<div class="box">
<button id="submit" disabled>预览</button>
<a href="#" id="download">下载</a>
</div>
<div class="container"></div>
</div>
<!-- Script -->
<script src="520.js"></script>
</body>
</html>