feature/task315-0526-ch
ch 2 years ago
parent e8fd578806
commit 4d1a40b5d0

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

@ -2,31 +2,42 @@
* @Author: ch * @Author: ch
* @Date: 2022-05-26 16:08:17 * @Date: 2022-05-26 16:08:17
* @LastEditors: ch * @LastEditors: ch
* @LastEditTime: 2022-05-29 20:53:46 * @LastEditTime: 2022-05-31 16:08:41
* @Description: file content * @Description: file content
--> -->
<template> <template>
<div class="main"> <div class="main">
<h2 class="title">下载马士兵严选APP</h2> <h2 class="title">下载马士兵严选APP</h2>
<p class="desc"><b>精选好物</b><span></span><b>精致生活</b></p> <p class="desc"><b>精选好物</b><span></span><b>精致生活</b></p>
<ul class="qcode"> <ul class="group">
<li> <li class="group--item">
<div class="qcode--box"> <div class="qrcode">
<img class="qrcode--icon" src="@/assets/img/down/android.png"/>
<img class="qrcode--img" src="@/assets/img/down/app-qrcode.png"/>
</div> </div>
<span class="qcode--title">Android</span> <span class="group--item-title">Android</span>
</li> </li>
<li> <li class="group--item">
<div class="qcode--box"></div> <div class="qrcode qrcode__disabled">
<span class="qcode--title">iOS</span> <img class="qrcode--icon" src="@/assets/img/down/android.png"/>
<img class="qrcode--img" src="@/assets/img/down/app-qrcode.png"/>
</div>
<span class="group--item-title">iOS</span>
<span class="group--item-btn">规划中...</span>
</li> </li>
<li> <li class="group--item">
<div class="qcode--box"></div> <div class="qrcode">
<span class="qcode--title">微信公众号</span> <img class="qrcode--icon" src="@/assets/img/down/android.png"/>
<img class="qrcode--img" src="@/assets/img/down/wx-qrcode.jpg"/>
</div>
<span class="group--item-title">微信公众号</span>
</li> </li>
<li> <li class="group--item">
<div class="qcode--box"></div> <div class="qrcode">
<span class="qcode--title">H5</span> <img class="qrcode--icon" src="@/assets/img/down/android.png"/>
<img class="qrcode--img" src="@/assets/img/down/h5-qrcode.png"/>
</div>
<span class="group--item-title">H5</span>
</li> </li>
</ul> </ul>
<div class="bg"> <div class="bg">
@ -72,25 +83,64 @@
border-radius: 6px; border-radius: 6px;
} }
} }
.qcode{ .group{
width: 930px; width: 930px;
margin: 73px auto; margin: 73px auto;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
z-index: 1; z-index: 1;
position: relative; position: relative;
li{ &--item{
text-align: center; text-align: center;
&-title{
display: block;
font-size: 20px;
margin: 25px 0;
}
&-btn{
border: 1px solid #ddd;
color: #A7A7A7;
font-size: 16px;
width: 142px;
height: 40px;
line-height: 40px;
display: inline-block;
}
} }
&--box{ }
width: 180px;
height: 180px; .qrcode{
background: #F4F3F3; width: 180px;
height: 180px;
background: url('@/assets/img/down/qrcode.png') no-repeat #F4F3F3 right top;
background-size: 52px;
cursor: pointer;
text-align: center;
position: relative;
&--icon{
position: absolute;
z-index: 1;
width: 57px;
height: 96px;
left: 62px;
top: 42px;
} }
&--title{ &--img{
display: block; position: absolute;
font-size: 20px; z-index: 2;
margin: 25px 0; left: 0;
top: 0;
transition: opacity 1s;
opacity: 0;
&:hover{
opacity: 1;
}
}
&__disabled{
cursor: no-drop;
.qrcode--img:hover{
opacity: 0;
}
} }
} }
.bg{ .bg{

Loading…
Cancel
Save