您好,登錄后才能下訂單哦!
怎么在微信小程序中實現一個側邊分類欄?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
本文實例為大家分享了微信小程序實現側邊分類欄的具體代碼,供大家參考,具體內容如下
wxml–
<!--主盒子--> <view class="container"> <!-- 左側欄 --> <view class='nav_left'> <view class="nav_left_items {{curNav == 1 ? 'active' : ''}}" bindtap="switchRightTab" data-id="1"> 水果 </view> <view class="nav_left_items {{curNav == 2 ? 'active' : ''}}" bindtap="switchRightTab" data-id="2"> 干果 </view> <view class="nav_left_items {{curNav == 3 ? 'active' : ''}}" bindtap="switchRightTab" data-id="3"> 蔬菜 </view> <view class="nav_left_items {{curNav == 4 ? 'active' : ''}}" bindtap="switchRightTab" data-id="4"> 海鮮 </view> </view> <!-- 右側欄 --> <view class="nav_right"> <view wx:if="{{curNav==1}}"> <view class="nav_right_items"> <image src="../images/mihoutao.png"></image> <text>獼猴桃</text> </view> <view class="nav_right_items"> <image src="../images/longyan.png"></image> <text>龍眼</text> </view> <view class="nav_right_items"> <image src="../images/juzi.png"></image> <text>橘子</text> </view> <view class="nav_right_items"> <image src="../images/huolongguo.png"></image> <text>火龍果</text> </view> <view class="nav_right_items"> <image src="../images/caomei.png"></image> <text>草莓</text> </view> </view> <view wx:if="{{curNav==2}}"> <view class="nav_right_items"> <image src="../images/xiaweiyi.png"></image> <text>夏威夷果</text> </view> <view class="nav_right_items"> <image src="../images/kaixin.png"></image> <text>開心果</text> </view> <view class="nav_right_items"> <image src="../images/bigen.png"></image> <text>碧根果</text> </view> <view class="nav_right_items"> <image src="../images/mangguo.png"></image> <text>芒果</text> </view> </view> <view wx:if="{{curNav==3}}"> <view class="nav_right_items"> <image src="../images/huaye.png"></image> <text>花椰菜</text> </view> <view class="nav_right_items"> <image src="../images/shengcai.png"></image> <text>生菜</text> </view> <view class="nav_right_items"> <image src="../images/fanqie.png"></image> <text>番茄</text> </view> </view> </view> </view>
–js–
// pages/stock/stock_main.js Page({ /* 頁面的初始數據 */ data: { curNav:1 }, /* 把點擊到的某一項 設為當前curNav */ switchRightTab:function(e){ let id = e.target.dataset.id; console.log(id); this.setData({ curNav: id }) } })
–wxss–
/* 1. 設置整個頁面的背景顏色 */ page{ background: #f5f5f5; /* 避免左側Item不夠時 被白色覆蓋*/ } /* 2.主盒子 */ .container { width: 100%; /* 寬度占屏幕的100% */ height: 100%; /* 高度占屏幕的100% */ background-color: #fff; /* 背景顏色 */ } /* 3.左盒子*/ /* 3.1. 左側欄主盒子總體設置 */ .nav_left{ position:absolute; /* 使用絕對定位 */ top:0px; /* 距離上邊距:0px */ left:0px; /* 距離左邊距:0px */ width: 25%; /* 每個item所占的寬度 */ background: #f5f5f5; /* 主盒子設置背景色為灰色 */ text-align: center; /* 文字居中顯示 */ } /* 3.2. 左側欄的每個item */ .nav_left .nav_left_items{ height: 40px; /* 每個item高40px*/ padding: 6px 0; /* 上內邊距和下內邊距是 6px[增加高度] 右內邊距和左內邊距是 0px*/ border-bottom: 1px solid #dedede; /* 設置下邊線 */ font-size: 14px; /* 設置文字大小:14px */ } /* 3.3. 左側欄list的item被選中時*/ .nav_left .nav_left_items.active{ background: #fff; /* 背景色變成白色 */ color: #3385ff; /* 字體編程藍色 */ border-left: 3px solid #3385ff; /* 設置邊框的寬度以及顏色 */ } /* 4.右盒子 */ /* 4.1. 右側欄主盒子總體設置 */ .nav_right{ position: absolute; /* 使用絕對定位 */ top: 0; /* 距離上邊距:0px */ left: 80px; /* 距離左邊距:80px */ width: 75%; /* 右側主盒子所占寬度 */ height: 600px; /* 右側主盒子所占高度 */ padding: 10px; /* 所有 4 個內邊距都是 10px*/ box-sizing: border-box; /* 為元素指定的任何內邊距和邊框都將在已設定的寬度和高度內進行繪制*/ background: #fff; /* 右側主盒子背景顏色 */ } /* 4.2. 右側欄中的每個item */ .nav_right .nav_right_items{ float: left; /* 浮動向左 */ width: 33.33%; /* 每個item設置寬度是33.33% */ height: 120px; /* 每個item設置高度是120px */ text-align: center; /* 設置圖片下方的提示文字居中顯示 */ } /* 4.3. 右側欄中的每個item的圖樣式設置 */ .nav_right .nav_right_items image{ width: 60px; /* 給圖片設置寬度 */ height: 60px; /* 給圖片設置高度 */ margin-top: 15px; /* 圖片距離上邊距15px */ border-radius: 40%; /* 給圖片添加圓角邊框 */ }
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。