您好,登錄后才能下訂單哦!
這篇文章主要介紹小程序如何實(shí)現(xiàn)跟隨菜單效果和循環(huán)嵌套加載數(shù)據(jù),文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
效果如圖:
代碼如下:
wxml
//使用循環(huán)嵌套data數(shù)據(jù)格式寫(xiě)對(duì)即可 <scroll-view class="left" scroll-y> <view wx:for="{{left}}" class="leftlist {{index==_click?'yes':''}}" data-i="{{index}}" bindtap="tap"> {{item.txt}} </view> </scroll-view> <scroll-view class="right" scroll-y bindscroll="scroll" scroll-into-view="{{toView}}"> <view id="{{item.id}}" wx:for="{{right}}"> <view class="title"> <text class="line"></text> {{item.txt}} <text class="line"></text> </view> <view class="li" wx:for="{{item.li}}"> <image src="{{item.src}}"></image> <text class="name">{{item.name}}</text> </view> </view> </scroll-view>
js
Page({ data: { toView: 'red1', _click:0, left: [{ txt: '新品', id: 'new' }, { txt: '手機(jī)', id: 'phone' }, { txt: '電視', id: 'mv' }, { txt: '電腦', id: 'computer' }], right: [ { txt: '新品', id: 'new',li: [{ src: '../../assets/images/max1.jpg', name: '小米noto' }, { src: '../../assets/images/max1.jpg', name: '小米mix' }, { src: '../../assets/images/max3.jpg', name: '小米5c' }, { src: '../../assets/images/max2.jpg', name: '小米notp' }, { src: '../../assets/images/max2.jpg', name: '小米note5' }, { src: '../../assets/images/max2.jpg', name: '小米6' }]}, { txt: '手機(jī)', id: 'phone',li: [{ src: '../../assets/images/max2.jpg', name: '小米6s' }, { src: '../../assets/images/max3.jpg', name: '小米max' }, { src: '../../assets/images/max2.jpg', name: '小米5s' }, { src: '../../assets/images/max1.jpg', name: '小米li' }, { src: '../../assets/images/max3.jpg', name: '小米4' }, { src: '../../assets/images/max1.jpg', name: '小米max' }]}, { txt: '電視', id: 'mv', li: [{ src: '../../assets/images/max3.jpg', name: '小米6' }, { src: '../../assets/images/max2.jpg', name: '小米mix' }, { src: '../../assets/images/max1.jpg', name: '小米7s' }, { src: '../../assets/images/max3.jpg', name: '小米2' }, { src: '../../assets/images/max1.jpg', name: '小米note7' }, { src: '../../assets/images/max3.jpg', name: '小米8' }] }, { txt: '電腦', id: 'computer', li: [{ src: '../../assets/images/max1.jpg', name: '小米2' }, { src: '../../assets/images/max1.jpg', name: '小米mix' }, { src: '../../assets/images/max2.jpg', name: '小米max' }, { src: '../../assets/images/max1.jpg', name: '小米6' }, { src: '../../assets/images/max3.jpg', name: '小米note' }, { src: '../../assets/images/max1.jpg', name: '小米max' }] }] }, scroll: function (e) { console.log(e)//右側(cè)列表滑動(dòng)-左側(cè)列表名稱樣式跟著改變,然而我不會(huì)寫(xiě),擱置中,誰(shuí)會(huì)告訴我,謝謝! }, tap: function (e) { var j = parseInt(e.currentTarget.dataset.i); this.setData({ toView: this.data.left[j].id,//控制視圖滾動(dòng)到為此id的<view> _click:j //控制左側(cè)點(diǎn)擊后樣式 }) }, })
wxss
page{border-top:1px solid #f6f6f6;} .left{ height:100%; width: 19%; display: inline-block; background:#fff; text-align:center; border-right:1px solid #eee; } .leftlist{ font-size:12px; padding:10px; } .right{ height:100%; width: 80%; display: inline-block; background:#fff; text-align:center; } .line{ width:15px; height:1px; background:#ddd; display:inline-block; vertical-align:super; margin:0 15px; } .li{ height:10%; width:30%; display:inline-block; text-align:center; } .li image{width:60px;height:60px;} .li .name{ font-size:12px; display:block; color:#888; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; } .title{padding:20px 0;} .yes{color: #f99;font-size: 14px;}
友情提示:
1、左側(cè)點(diǎn)擊樣式改變:
利用自身index與點(diǎn)擊的元素的index比較。
data-i=“{{獲取當(dāng)前index傳給_click保存}}”,
class=”leftlist {{index==_click?'yes':”}}”,
此處index是自身的,如果自身和點(diǎn)擊的一致就添加,yes類名,否側(cè)滯空清除yes樣式。
2、點(diǎn)擊左側(cè),右側(cè)跟隨:
利用scroll-into-view=”{{id}}”, 視圖會(huì)滾動(dòng)到id為此id的view標(biāo)簽。我是直接從data數(shù)據(jù)里取得id,也可以直接獲取點(diǎn)擊元素id。
3、循環(huán)嵌套:data數(shù)據(jù)格式寫(xiě)對(duì),按照官方文檔就行。
以上是“小程序如何實(shí)現(xiàn)跟隨菜單效果和循環(huán)嵌套加載數(shù)據(jù)”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。