底部3-5个选项的底部导航栏,目前在移动端上是主流布局之一,因此腾讯官方特地做了,可以通过设置,就可以做出了一个底部的导航栏。 相关教程:
但是通过设置的这个底部的导航栏,功能上比较固定,它必须要设置与它对应的一个页面,而且并不能滑动。
在业务上,有时候会比较限制,并不能完全满足所需。
又例如早前有人拿着UI稿问我,这种广告轮播图的样式,在小程序能不能实现呢?
我当时没有想了下,还不是很确定,因为小程序的轮播图的那几个小点点实在比较普通,样式单一。
因此特意写了一篇自定义轮播图的文章
因此自定义就有这个必要性
下面介绍这个仿Android fragment可滑动的底部导航栏如何实现
项目最终效果图:
wxml:
@H_502_15@
<scroll-view class="hot-Box" scroll-y="true" upper-threshold="50" lower-threshold="100" bindscrolltolower="scrolltolower">
<view class="themes-list">
<view class="themes-list-Box" wx:for="{{datalists}}">
<view class="themes-list-main">
<view class="themes-list-name">{{item}}
@H_502_15@
<scroll-view class="hot-Box" scroll-y="true" upper-threshold="50" lower-threshold="100" bindscrolltolower="scrolltolower">
<view class="themes-list">
<view class="themes-list-Box" wx:for="{{reslists}}">
<view class="themes-list-main">
<view class="themes-list-name">{{item}}
@H_502_15@
<scroll-view class="hot-Box" scroll-y="true" upper-threshold="50" lower-threshold="100" bindscrolltolower="scrolltolower">
<view class="themes-list">
<view class="themes-list-Box" wx:for="{{datalists}}">
<view class="themes-list-main">
<view class="themes-list-name">{{item}}
@H_502_15@
<scroll-view class="hot-Box" scroll-y="true" upper-threshold="50" lower-threshold="100" bindscrolltolower="scrolltolower">
<view class="themes-list">
<view class="themes-list-Box" wx:for="{{reslists}}">
<view class="themes-list-main">
<view class="themes-list-name">{{item}}
<view class="swiper-tab">
<view class="swiper-tab-list {{currentTab==0 ? 'active' : ''}}" data-current="0" bindtap="swichNav">
<view class="swiper-tab-img"><image class="img" src="{{currentTab==0 ? iconlists[0].focus: iconlists[0].normal}}">
wxss:
js:
}
})