编写一个HTML页面右侧浮窗,点击后弹出一个本地二维码的图片的功能,要求文字二维码竖向显示
时间: 2024-03-30 20:37:01 浏览: 193
网页右侧悬浮微信二维码
以下是一个简单的实现HTML页面右侧浮窗,点击后弹出一个本地二维码的图片的示例代码:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>右侧浮窗二维码示例</title>
<style>
.qrcode-float {
position: fixed;
right: 20px;
bottom: 20px;
width: 100px;
height: 100px;
background-color: #eee;
border: 1px solid #ccc;
border-radius: 50%;
cursor: pointer;
text-align: center;
line-height: 100px;
font-size: 24px;
}
.qrcode-float img {
display: none;
position: absolute;
top: 0;
right: 100%;
width: 200px;
height: 400px;
transform: rotate(90deg);
z-index: 999;
}
.qrcode-float:hover img {
display: block;
}
</style>
</head>
<body>
<div class="qrcode-float">
<span>二维码</span>
<img src="qrcode.png" alt="二维码">
</div>
</body>
</html>
```
说明:
1. 使用position: fixed;将浮窗固定在页面上。
2. 通过:hover伪类实现鼠标悬停时显示二维码图片。
3. 使用transform: rotate(90deg);实现文字二维码竖向显示。
阅读全文