最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

微信小程序?qū)崿F(xiàn)登錄注冊(cè)tab切換效果

 更新時(shí)間:2020年12月29日 14:31:45   作者:進(jìn)階的碼農(nóng)  
這篇文章主要為大家詳細(xì)介紹了微信小程序?qū)崿F(xiàn)登錄注冊(cè)切換效果,簡(jiǎn)易版tab切換效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

利用三元運(yùn)算符實(shí)現(xiàn)登錄注冊(cè)效果切換,供大家參考,具體內(nèi)容如下

直接上代碼

wxml:

<view class='top'>
 <text class="{{login?'active':''}}" catchtap='login'>登錄</text>
 <text class="{{login?'':'active'}}" catchtap='register'>注冊(cè)</text>
</view>
 
<view class='log' wx:if="{{login}}">
 <form>
 <input placeholder='賬號(hào)'/>
 <button>登錄</button>
 </form>
 
</view>
<view class='reg'wx:else>
 <form>
 <input placeholder='密碼'/>
 <button>注冊(cè)</button>
 </form>
</view>

wxss:

.top{
 display: flex;
 flex-direction: row;
 height: 100rpx;
 border-bottom: 1px solid #ccc;
}
.top text{
 width: 50%;
 line-height: 100rpx;
 text-align: center;
}
.top .active{
 border-bottom: 2px solid red;
}
input{
 border-bottom: 1px solid #ccc;
 line-height: 100rpx;
 height: 100rpx;
 padding-left: 40rpx;
 margin-bottom: 40rpx;
}

js:

Page({
 data: {
 login:true
 },
 
 /**
 * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面加載
 */
 login:function(){
  this.setData({
  login:true
  });
 },
 register:function(){
 this.setData({
  login: false
 });
 },
 onLoad: function (options) {
 
 },
 
 /**
 * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面初次渲染完成
 */
 onReady: function () {
 
 },
 
 /**
 * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面顯示
 */
 onShow: function () {
 
 },
 
 /**
 * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面隱藏
 */
 onHide: function () {
 
 },
 
 /**
 * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面卸載
 */
 onUnload: function () {
 
 },
 
 /**
 * 頁(yè)面相關(guān)事件處理函數(shù)--監(jiān)聽(tīng)用戶(hù)下拉動(dòng)作
 */
 onPullDownRefresh: function () {
 
 },
 
 /**
 * 頁(yè)面上拉觸底事件的處理函數(shù)
 */
 onReachBottom: function () {
 
 },
 
 /**
 * 用戶(hù)點(diǎn)擊右上角分享
 */
 onShareAppMessage: function () {
 
 }
})

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

相關(guān)文章

最新評(píng)論

兖州市| 望城县| 闸北区| 句容市| 水富县| 政和县| 沙河市| 京山县| 鄂州市| 岚皋县| 东莞市| 泉州市| 循化| 临汾市| 平塘县| 丽水市| 沙湾县| 勃利县| 增城市| 苗栗县| 喀喇| 合作市| 珠海市| 中江县| 安宁市| 中卫市| 营山县| 萨迦县| 玉树县| 滨海县| 大足县| 德惠市| 德庆县| 义马市| 赣榆县| 天镇县| 巴彦县| 岗巴县| 仙居县| 吉木萨尔县| 油尖旺区|