This commit is contained in:
张良(004796)
2024-03-27 18:18:51 +08:00
parent 3bdaa5d3e9
commit b38001e0de

View File

@@ -1,9 +1,11 @@
<template> <template>
<div class="home-wrapper"> <div class="home-wrapper">
<div class="share-body"> <div
ewqeqwe class="j-background"
></div>
<div class="j-button">
<button class="downbtn" id="downloadButton"></button>
</div> </div>
<button class="downbtn" id="downloadButton" @click="download"></button>
</div> </div>
</template> </template>
@@ -17,7 +19,7 @@ export default {
agreement: { agreement: {
userAgreement: '', userAgreement: '',
anchorJoinAgreement: '', anchorJoinAgreement: '',
privacyAgreement: '', privacyAgreement: ''
} }
} }
}, },
@@ -62,20 +64,34 @@ img {
background-size:100% 100%; background-size:100% 100%;
background: url("../assets/back.png") no-repeat fixed center center; background: url("../assets/back.png") no-repeat fixed center center;
} }
.j-background {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("../assets/back.png") no-repeat fixed center center;
background-size: 100% 100%;
}
.j-button {
position: fixed;
left: 0;
right: 0;
margin: auto;
height: 60px;
bottom: 70px;
width: 300px;
background: url("../assets/download.png") no-repeat;
background-size: 100% 100%;
overflow: hidden;
}
.downbtn { .downbtn {
position: absolute; outline: none;
color: #ffffff;
text-align: center;
font-size: 2rem;
font-weight: bold;
height: 92px;
width: 505px;
line-height: 3rem;
background-image: url("../assets/download.png");
bottom: 9.3rem;
left: 25%;
border: none; border: none;
margin-bottom: 2rem; width: 100%;
border-radius: 1.8rem; height: 100%;
background: none;
} }
</style> </style>