效果圖
成都創(chuàng)新互聯(lián)專(zhuān)注于寧國(guó)企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè),商城網(wǎng)站制作。寧國(guó)網(wǎng)站建設(shè)公司,為寧國(guó)等地區(qū)提供建站服務(wù)。全流程按需網(wǎng)站開(kāi)發(fā),專(zhuān)業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)專(zhuān)業(yè)和態(tài)度為您提供的服務(wù)
.wxml
tab1 tab2 tab3
.wxss
.tabBar{ height: 80rpx; background-color:#50B7EA; width: 100%; font-size: 28rpx; color: rgba(255,255,255,0.50); position: fixed; top: 0; left: 0; display: flex; justify-content: center; align-items: center; z-index: 997; } .tabItem{ width: 33.333%; display: flex; align-content: center; justify-content: center; position: relative; height: 100%; font-size: 28rpx; } .click{ color: white; } .underline{ position: absolute; content: ''; width: 84rpx; height: 3px; background-color:white; bottom: 0; }
.js
data:{ tabClick: 0, animationData: {}, isLeft: '12%' }, swiperTab: function (e) { var that = this; var index = e.detail.current console.log(e.detail.current) var animation = wx.createAnimation({ duration: 1000, timingFunction: "ease", }) this.animation = animation if (index === 0) { animation.translate(0, 0).step(); that.setData({ animationData: animation.export() }) that.setData({ tabClick: e.detail.current }); } else if (index === 1) { var w = wx.getSystemInfoSync().windowWidth; w = w * 0.32 animation.translate(w, 0).step(); that.setData({ animationData: animation.export() }) that.setData({ tabClick: e.detail.current }); } else if(index === 2){ var w = wx.getSystemInfoSync().windowWidth; w = w * 0.65 animation.translate(w, 0).step(); that.setData({ animationData: animation.export() }) that.setData({ tabClick: e.detail.current }); } },
總結(jié)
以上所述是小編給大家介紹的微信小程序?qū)Ш綑诟S滑動(dòng)效果的實(shí)現(xiàn)代碼,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)歡迎給我留言,小編會(huì)及時(shí)回復(fù)大家的!