@ -1,17 +1,107 @@
|
|||||||
<template>
|
<template>
|
||||||
<view>
|
<!-- 背景 -->
|
||||||
|
<view class="background">
|
||||||
|
|
||||||
|
<!-- 人物 -->
|
||||||
|
<image class="human" src="/static/information/girl_height/pictures/huamn.png"></image>
|
||||||
|
<!-- 滚动条 -->
|
||||||
|
<image class="roll" @click="go_to_roll()" src="/static/information/girl_height/pictures/roll.png"></image>
|
||||||
|
<!-- 按钮 -->
|
||||||
|
<image class="button" @click="go_to_purpose()" src="/static/information/girl_height/pictures/button.png"></image>
|
||||||
|
<!-- 进度条 -->
|
||||||
|
<image class="progress" src="/static/information/girl_height/pictures/progress.png"></image>
|
||||||
|
<!-- 文本-->
|
||||||
|
<text class="text" @click="go_to_roll()">{{height}}</text>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data(){
|
||||||
return {};
|
return{
|
||||||
}
|
height:''
|
||||||
|
};
|
||||||
|
},
|
||||||
|
onLoad(options){
|
||||||
|
this.height=options.height;
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
navigateTo(page) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: page
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
go_to_purpose() {
|
||||||
|
this.navigateTo('/pages/information/purpose/purpose');
|
||||||
|
},
|
||||||
|
|
||||||
|
go_to_roll() {
|
||||||
|
this.navigateTo('/pages/information/girl_height_roll/girl_height_roll');
|
||||||
|
},
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
.background {
|
||||||
|
background-image: url("/static/information/girl_height/pictures/img.png");
|
||||||
|
background-size: cover;
|
||||||
|
background-position: center;
|
||||||
|
height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.human {
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 90%;
|
||||||
|
top:-10%;
|
||||||
|
object-fit: contain; /* 保持图片比例 */
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
.progress{
|
||||||
|
position: absolute;
|
||||||
|
width: 77%;
|
||||||
|
height: 7%;
|
||||||
|
object-fit: contain; /* 保持图片比例 */
|
||||||
|
opacity: 1;
|
||||||
|
top: 2%; /* 根据需要调整位置 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Text 延迟显示 */
|
||||||
|
.roll {
|
||||||
|
position: absolute;
|
||||||
|
width: 77%;
|
||||||
|
height: 20%;
|
||||||
|
object-fit: contain; /* 保持图片比例 */
|
||||||
|
opacity: 1;
|
||||||
|
top: 55%; /* 根据需要调整位置 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Button 延迟显示并加缩放特效,放在下方 */
|
||||||
|
.button {
|
||||||
|
position: absolute;
|
||||||
|
height: 13%;
|
||||||
|
width: 80%;
|
||||||
|
opacity: 1;
|
||||||
|
right: 10%; /* 距右边 10% */
|
||||||
|
bottom: 2%; /* 距底部 3.5% */
|
||||||
|
}
|
||||||
|
|
||||||
|
.text{
|
||||||
|
position: absolute;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 1.5em;
|
||||||
|
width: 100%;
|
||||||
|
height: 20%;
|
||||||
|
top: 69%;
|
||||||
|
color:#ffffff;
|
||||||
|
}
|
||||||
|
</style>
|
After Width: | Height: | Size: 169 KiB |
After Width: | Height: | Size: 169 KiB |
Before Width: | Height: | Size: 230 KiB |
After Width: | Height: | Size: 4.2 MiB |
After Width: | Height: | Size: 169 KiB |
Before Width: | Height: | Size: 9.4 KiB |
After Width: | Height: | Size: 3.3 MiB |
Before Width: | Height: | Size: 94 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 14 KiB |
@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"hash": "3dcffc29",
|
"hash": "48f6c93b",
|
||||||
"configHash": "cc60d382",
|
"configHash": "badd50c8",
|
||||||
"lockfileHash": "e3b0c442",
|
"lockfileHash": "e3b0c442",
|
||||||
"browserHash": "e601f541",
|
"browserHash": "debd2ea0",
|
||||||
"optimized": {},
|
"optimized": {},
|
||||||
"chunks": {}
|
"chunks": {}
|
||||||
}
|
}
|