@ -0,0 +1,10 @@ |
|||||||
|
{ |
||||||
|
"emmet_language_server": { |
||||||
|
"init_options": { |
||||||
|
"preferences": { |
||||||
|
"css.intUnit": "rpx", |
||||||
|
"css.floatUnitr": "rpx" |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Before Width: | Height: | Size: 807 KiB After Width: | Height: | Size: 859 KiB |
Before Width: | Height: | Size: 595 KiB After Width: | Height: | Size: 626 KiB |
Before Width: | Height: | Size: 559 KiB After Width: | Height: | Size: 573 KiB |
Before Width: | Height: | Size: 678 KiB After Width: | Height: | Size: 692 KiB |
Before Width: | Height: | Size: 802 KiB After Width: | Height: | Size: 803 KiB |
Before Width: | Height: | Size: 854 KiB After Width: | Height: | Size: 695 KiB |
Before Width: | Height: | Size: 127 KiB After Width: | Height: | Size: 154 KiB |
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 602 KiB After Width: | Height: | Size: 520 KiB |
Before Width: | Height: | Size: 830 KiB After Width: | Height: | Size: 830 KiB |
Before Width: | Height: | Size: 396 KiB After Width: | Height: | Size: 379 KiB |
Before Width: | Height: | Size: 726 KiB After Width: | Height: | Size: 723 KiB |
Before Width: | Height: | Size: 375 KiB After Width: | Height: | Size: 373 KiB |
Before Width: | Height: | Size: 470 KiB After Width: | Height: | Size: 469 KiB |
Before Width: | Height: | Size: 2.0 MiB After Width: | Height: | Size: 2.0 MiB |
Before Width: | Height: | Size: 474 KiB After Width: | Height: | Size: 437 KiB |
After Width: | Height: | Size: 90 KiB |
Before Width: | Height: | Size: 574 KiB After Width: | Height: | Size: 500 KiB |
Before Width: | Height: | Size: 443 KiB After Width: | Height: | Size: 443 KiB |
Before Width: | Height: | Size: 446 KiB After Width: | Height: | Size: 460 KiB |
After Width: | Height: | Size: 445 KiB |
After Width: | Height: | Size: 586 KiB |
After Width: | Height: | Size: 586 KiB |
After Width: | Height: | Size: 585 KiB |
After Width: | Height: | Size: 1018 KiB |
After Width: | Height: | Size: 584 KiB |
After Width: | Height: | Size: 584 KiB |
After Width: | Height: | Size: 584 KiB |
After Width: | Height: | Size: 581 KiB |
After Width: | Height: | Size: 587 KiB |
After Width: | Height: | Size: 587 KiB |
After Width: | Height: | Size: 944 KiB |
@ -1,3 +1,22 @@ |
|||||||
.page { |
.page { |
||||||
width: 100vw; |
width: 100vw; |
||||||
} |
} |
||||||
|
|
||||||
|
.page-click1 { |
||||||
|
position: absolute; |
||||||
|
top: 1406rpx; |
||||||
|
left: 50vw; |
||||||
|
z-index: 1; |
||||||
|
width: 50vw; |
||||||
|
height: 120rpx; |
||||||
|
background-color: transparent; |
||||||
|
} |
||||||
|
|
||||||
|
.float1 { |
||||||
|
position: absolute; |
||||||
|
top: 0; |
||||||
|
left: 0; |
||||||
|
z-index: 2; |
||||||
|
width: 100vw; |
||||||
|
height: 100vh; |
||||||
|
} |
||||||
|
@ -1,13 +1,25 @@ |
|||||||
const _app = getApp<IAppOption>(); |
const _app = getApp<IAppOption>(); |
||||||
|
|
||||||
Page({ |
Page({ |
||||||
data: {}, |
data: { |
||||||
|
float1: false, |
||||||
|
}, |
||||||
onLoad() {}, |
onLoad() {}, |
||||||
handleTap1() { |
handlePage() { |
||||||
wx.navigateTo({ |
wx.navigateTo({ |
||||||
url: "/pages/3/index", |
url: "/pages/3/index", |
||||||
}); |
}); |
||||||
}, |
}, |
||||||
|
handelTap1() { |
||||||
|
this.setData({ |
||||||
|
float1: true, |
||||||
|
}); |
||||||
|
}, |
||||||
|
handleFloat1() { |
||||||
|
this.setData({ |
||||||
|
float1: false, |
||||||
|
}); |
||||||
|
}, |
||||||
}); |
}); |
||||||
|
|
||||||
export {}; |
export {}; |
||||||
|
@ -1,2 +1,11 @@ |
|||||||
<navigation-bar></navigation-bar> |
<navigation-bar></navigation-bar> |
||||||
<image class="page" mode="widthFix" src="{{imageUrl}}md/12.png?t={{Timestamp}}" bind:tap="handleTap1"></image> |
<image class="page" mode="widthFix" src="{{imageUrl}}md/12.png?t={{Timestamp}}" bind:tap="handlePage"></image> |
||||||
|
<view class="page-click1" catch:tap="handelTap1"></view> |
||||||
|
|
||||||
|
<image |
||||||
|
wx:if="{{float1}}" |
||||||
|
class="float1" |
||||||
|
mode="widthFix" |
||||||
|
src="{{imageUrl}}md/popup1.png?t={{Timestamp}}" |
||||||
|
catch:tap="handleFloat1" |
||||||
|
></image> |
||||||
|
@ -1,3 +1,45 @@ |
|||||||
.page { |
.page { |
||||||
width: 100vw; |
width: 100vw; |
||||||
|
padding-bottom: 180rpx; |
||||||
|
} |
||||||
|
|
||||||
|
.page-click1 { |
||||||
|
position: fixed; |
||||||
|
bottom: 20rpx; |
||||||
|
left: 0; |
||||||
|
z-index: 3; |
||||||
|
width: 50vw; |
||||||
|
height: 224rpx; |
||||||
|
background-color: transparent; |
||||||
|
} |
||||||
|
.page-click2 { |
||||||
|
position: fixed; |
||||||
|
bottom: 20rpx; |
||||||
|
left: 50vw; |
||||||
|
z-index: 3; |
||||||
|
width: 50vw; |
||||||
|
height: 224rpx; |
||||||
|
background-color: transparent; |
||||||
|
} |
||||||
|
.page-click3 { |
||||||
|
position: absolute; |
||||||
|
top: 320rpx; |
||||||
|
left: 0; |
||||||
|
z-index: 1; |
||||||
|
width: 100vw; |
||||||
|
height: 124rpx; |
||||||
|
background-color: transparent; |
||||||
|
} |
||||||
|
|
||||||
|
.tabbar { |
||||||
|
position: fixed; |
||||||
|
bottom: 0; |
||||||
|
left: 0; |
||||||
|
z-index: 2; |
||||||
|
width: 100vw; |
||||||
|
padding-bottom: 20rpx; |
||||||
|
background-color: #fff; |
||||||
|
.tabbar-img { |
||||||
|
width: 100%; |
||||||
|
} |
||||||
} |
} |
||||||
|
@ -0,0 +1,10 @@ |
|||||||
|
<navigation-bar></navigation-bar> |
||||||
|
<image class="page" mode="widthFix" src="{{imageUrl}}md/35.png?t={{Timestamp}}" bind:tap="handleTap1"></image> |
||||||
|
|
||||||
|
<view class="page-click1" catch:tap="handelTap1"></view> |
||||||
|
<view class="page-click2" catch:tap="handelTap2"></view> |
||||||
|
<view class="page-click3" catch:tap="handelTap3"></view> |
||||||
|
|
||||||
|
<view class="tabbar"> |
||||||
|
<image class="tabbar-img" mode="widthFix" src="{{imageUrl}}md/footer1.png?t={{Timestamp}}"></image> |
||||||
|
</view> |
@ -1,3 +1,5 @@ |
|||||||
{ |
{ |
||||||
"usingComponents": {} |
"usingComponents": { |
||||||
|
"van-slider": "@vant/weapp/slider/index" |
||||||
|
} |
||||||
} |
} |
||||||
|