欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

微信小程序?qū)崿F(xiàn)側(cè)邊導(dǎo)航欄

 更新時(shí)間:2022年07月15日 17:07:13   作者:MangGit  
這篇文章主要為大家詳細(xì)介紹了微信小程序?qū)崿F(xiàn)側(cè)邊導(dǎo)航欄,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了微信小程序?qū)崿F(xiàn)側(cè)邊導(dǎo)航欄的具體代碼,供大家參考,具體內(nèi)容如下

效果圖

wxml

<view class='productNav'>
? <!-- 左側(cè) -->
? <view class='left'>
? ? <view class="{{active==0?'selected':'normal'}}" id="0" bindtap='switchNav'>為您推薦</view>
? ? <view class="{{active==1?'selected':'normal'}}" id="1" bindtap='switchNav'>電腦</view>
? ? <view class="{{active==2?'selected':'normal'}}" id="2" bindtap='switchNav'>手機(jī)</view>
? </view>
? <!-- 右側(cè) -->
? <view class='right'>
? ? <view class='type'>
? ? ? <!-- current:當(dāng)前所在滑塊的 index -->
? ? ? <!-- vertical:滑動(dòng)方向是否為縱向 -->
? ? ? <swiper current='{{currentTab}}' vertical='{{true}}'>
? ? ? ? <!-- catchtouchmove 阻止彈窗后滾動(dòng)穿透 -->
? ? ? ? <swiper-item id="0" catchtouchmove="false">
? ? ? ? ? 為您推薦
? ? ? ? </swiper-item>
? ? ? ? <swiper-item id="1" catchtouchmove="false">
? ? ? ? ? 手機(jī)
? ? ? ? </swiper-item>
? ? ? ? <swiper-item id="2" catchtouchmove="false">
? ? ? ? ? 電腦
? ? ? ? </swiper-item>
? ? ? </swiper>?
? ? </view>
? </view>
</view>

js

Page({
? data: {
? ? active:0,
? ? currentTab:0
? },
? switchNav: function (e) {
? ? var page = this;
? ? var id = e.target.id;
? ? if (this.data.currentTab == id) {
? ? ? return false;
? ? } else {
? ? ? page.setData({
? ? ? ? currentTab: id
? ? ? });
? ? }
? ? page.setData({
? ? ? active: id
? ? });
? }
?})

wxss

.productNav{
? display: flex;
? flex-direction: row;
? font-family: "Microsoft YaHei"
}
.left{
? width: 25%;
? font-size: 30rpx;
? background-color: #f4f4f4;
}
.left view{
? text-align: center;
? height: 90rpx;
? line-height: 90rpx;
}
.selected{
? background-color: #fff;
? border-left: 2px solid #E54847;
? font-weight: bold;
? color: #E54847;
}
.normal{
? background-color: #f4f4f4;
? border-bottom: 1px solid #f2f2f2;
}
.right{
? width:75%;
? margin: 0;
}
swiper{
? height: 500px;
}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論