您好,登錄后才能下訂單哦!
這篇文章主要介紹了微信小程序點擊頂部導航欄切換樣式代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
類似這樣的效果
<view class='helpCateList'> <!-- 類別 --> <scroll-view class='scroll-view' scroll-x="true"> <view class="item-content" wx:key="id" wx:for="{{helpCateList}}" wx:for-item="item"> <view class="content {{currentTab == item.itemsId ? 'active' : ''}}" data-itemsId='{{item.itemsId}}' bindtap='cateChange' >{{item.itemsName}} </view> </view> </scroll-view> </view>
.helpDisList .content{ position: relative; width: 710rpx; border-radius: 5rpx; } .active{ //當點擊的時候添加這個樣式 /* border-bottom: 4rpx solid rgb(252, 186, 7); */ color:rgb(252, 186, 7); }
Page({ data:{ helpCateList:[ //數據從后臺請求回來賦值 // { id: "1", desc: "康復醫療" }, // { id: "2", desc: "教育" }, // { id: "3", desc: "就業" }, // { id: "4", desc: "扶貧" }, // { id: "5", desc: "職業培訓" }, // { id: "6", desc: "社會保障" }, // { id: "7", desc: "文化生活" }, ], currentTab: 1, }, cateChange(e) { console.log(e) let that = this that.setData({ currentTab: e.currentTarget.dataset.itemsid, //這個必須要 }) },
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。