You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.0 KiB
52 lines
1.0 KiB
<template>
|
|
<div class="qq-poster">
|
|
<div>
|
|
<h1>QQ二维码</h1>
|
|
<p>欢迎扫描二维码,与我共同探讨测试开发的学习和实践。</p>
|
|
<div class="qr-code-container">
|
|
<img src="/src/assets/images/qq.png" alt="QR Code" class="qr-code" />
|
|
</div>
|
|
<p>扫码添加了解更多信息。</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup >
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
.qq-poster {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #fff;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 24px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
p {
|
|
font-size: 16px;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.qr-code-container {
|
|
margin: 20px 0;
|
|
padding: 10px;
|
|
border: 2px solid #ccc;
|
|
display: inline-block;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.qr-code {
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
</style>
|