【移動應用開發(fā)技術(shù)】小程序開發(fā)之選項卡怎么弄_第1頁
【移動應用開發(fā)技術(shù)】小程序開發(fā)之選項卡怎么弄_第2頁
【移動應用開發(fā)技術(shù)】小程序開發(fā)之選項卡怎么弄_第3頁
【移動應用開發(fā)技術(shù)】小程序開發(fā)之選項卡怎么弄_第4頁
免費預覽已結(jié)束,剩余1頁可下載查看

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

【移動應用開發(fā)技術(shù)】小程序開發(fā)之選項卡怎么弄

這篇文章主要介紹小程序開發(fā)之選項卡怎么弄,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!微信小程序選項卡的簡單實例看下效果代碼:home.wxml<!s/home/home.wxml-->

<view

class="swiper-tab">

<view

class="swiper-tab-item

{{currentTab==0

?

'on'

:

''}}"

data-current="0"

bindtap="swichNav">熱門</view>

<view

class="swiper-tab-item

{{currentTab==1

?

'on'

:

''}}"

data-current="1"

bindtap="swichNav">關(guān)注</view>

<view

class="swiper-tab-item

{{currentTab==2

?

'on'

:

''}}"

data-current="2"

bindtap="swichNav">好友</view>

</view>

<swiper

current="{{currentTab}}"

class="swiper-box"

duration="300"

style="height:{{winHeight

-

80}}px"

bindchange="bindChange">

<swiper-item>

<view>熱門</view>

</swiper-item>

<swiper-item>

<view>關(guān)注</view>

</swiper-item>

<swiper-item>

<view>好友</view>

</swiper-item>

</swiper>home.wxss/*

pages/home/home.wxss

*/

.swiper-tab{

width:

100%;

border-bottom:

2rpx

solid

#eeeeee;

text-align:

center;

line-height:

80rpx;}

.swiper-tab-item{

font-size:

30rpx;

display:

inline-block;

width:

33.33%;

color:

#666666;

}

.on{

color:

#f10b2e;

border-bottom:

5rpx

solid

#f10b2e;}

.swiper-box{

display:

block;

height:

100%;

width:

100%;

overflow:

hidden;

}

.swiper-box

view{

text-align:

center;

}home.js//

pages/home/home.js

var

app

=

getApp()

Page({

data:

{

winWidth:

0,

winHeight:

0,

//

tab切換

currentTab:

0,

},

onLoad:

function

()

{

var

that

=

this;

wx.getSystemInfo({

success:

function

(res)

{

that.setData({

winWidth:

res.windowWidth,

winHeight:

res.windowHeight

});

}

});

},

bindChange:

function

(e)

{

var

that

=

this;

that.setData({

currentTab:

e.detail.current

});

},

swichNav:

function

(e)

{

var

that

=

this;

if

(this.data.currentTab

===

e.target.dataset.current)

{

retur

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論