mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
92 lines
1.6 KiB
Vue
92 lines
1.6 KiB
Vue
<template>
|
|
<div>
|
|
<img class="preview-image" :src="image">
|
|
<div class="preview-popup">
|
|
<div class="preview-content">
|
|
<img src="https://img.yzcdn.cn/vant-weapp/qrcode-201808101114.jpg">
|
|
<p>微信扫码体验</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
const PREFIX = 'https://img.yzcdn.cn/vant-weapp/';
|
|
const MAP = {
|
|
index: 'index-201904170551.png',
|
|
col: 'layout-201808092138.png',
|
|
transition: 'transition-20180821.png'
|
|
};
|
|
|
|
export default {
|
|
computed: {
|
|
image() {
|
|
const hash = location.hash.slice(1);
|
|
return PREFIX + (MAP[hash] || MAP.index);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
body {
|
|
margin: 0;
|
|
color: #333;
|
|
line-height: 1;
|
|
background-color: #f2f3f5;
|
|
font-family: 'PingFang SC', Helvetica, 'STHeiti STXihei', 'Microsoft YaHei',
|
|
Tohoma, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.preview {
|
|
&-image {
|
|
width: 100%;
|
|
display: block;
|
|
margin-top: -62px;
|
|
}
|
|
|
|
&-popup {
|
|
opacity: 0;
|
|
z-index: 1;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(255, 255, 255, .95);
|
|
transition: .3s;
|
|
text-align: center;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
&-content {
|
|
left: 0;
|
|
top: 50%;
|
|
width: 100%;
|
|
height: 200px;
|
|
position: absolute;
|
|
text-align: center;
|
|
transform: translateY(-60%);
|
|
user-select: none;
|
|
|
|
img {
|
|
width: 180px;
|
|
height: 180px;
|
|
margin-bottom: 15px;
|
|
display: inline-block;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
color: #34495e;
|
|
line-height: 1.5;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|