将上面的代码放在一起
时间: 2024-12-05 21:21:47 浏览: 5
将上述代码整合到一个HTML文件中,你可以创建一个包含二维码和关闭按钮的小窗口。这里是一个完整的示例:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>二维码小窗口</title>
<style>
body {
font-family: Arial, sans-serif;
}
#qr-container {
position: fixed;
bottom: 20px;
right: 20px;
width: 300px;
height: 300px;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#qr-image {
max-width: 100%;
max-height: 100%;
}
#close-btn {
position: absolute;
top: 10px;
right: 10px;
padding: 5px 10px;
cursor: pointer;
}
</style>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js"></script>
<script>
$(document).ready(function () {
// 替换此处为你想要的二维码数据
var qrData = 'https://www.example.com'; // QRCode.js 库会解析这个字符串
function createQRImage(qrData) {
$('#qr-image').qrcode({
text: qrData,
size: 150,
typeNumber: 7,
errorCorrectionLevel: 'H'
});
}
createQRImage(qrData);
$('#close-btn').on('click', function() {
$('#qr-container').fadeOut();
});
// 如果需要在窗口大小改变时保持二维码居中,可以添加下面这行代码
// window.addEventListener('resize', function() {
// $('#qr-container').css('top', Math.max($(window).height() / 2 - $('#qr-container').outerHeight() / 2, 0));
// });
});
</script>
</head>
<body>
<div id="qr-container">
<img id="qr-image" alt="二维码图片">
<button id="close-btn">关闭</button>
</div>
</body>
</html>
```
这段代码包含了HTML结构、CSS样式以及jQuery和QRCode.js的引用。当页面加载完成时,会动态创建二维码并添加关闭按钮。如果需要,还可以添加一个窗口大小改变时的事件监听器,以保持二维码始终居中。
阅读全文