• 微信小程序实例:实现顶部tab切换以及滑动切换时导航栏会随着移动的效果(代码)


    本篇文章给大家带来的内容是关于微信小程序实例:实现顶部tab切换以及滑动切换时导航栏会随着移动的效果(代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

    实现的效果:

    js:

     

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    18

    19

    20

    21

    22

    23

    24

    25

    26

    27

    28

    29

    30

    31

    32

    33

    34

    35

    36

    37

    38

    39

    40

    41

    42

    43

    44

    45

    46

    47

    48

    49

    50

    51

    52

    53

    Page({

        data: {

            // tab切换 

            currentTab: 0,

        },

        swichNav: function (e) {

            console.log(e);

            var that = this;

            if (this.data.currentTab === e.target.dataset.current) {

                return false;

            } else {

                that.setData({

                    currentTab: e.target.dataset.current,

                })

            }

        },

        swiperChange: function (e) {

            console.log(e);

            this.setData({

                currentTab: e.detail.current,

            })

      

        },

        onLoad: function (options) {

            // 生命周期函数--监听页面加载

        },

        onReady: function () {

            // 生命周期函数--监听页面初次渲染完成

        },

        onShow: function () {

            // 生命周期函数--监听页面显示

        },

        onHide: function () {

            // 生命周期函数--监听页面隐藏

        },

        onUnload: function () {

            // 生命周期函数--监听页面卸载

        },

        onPullDownRefresh: function () {

            // 页面相关事件处理函数--监听用户下拉动作

        },

        onReachBottom: function () {

            // 页面上拉触底事件的处理函数

        },

        onShareAppMessage: function () {

            // 用户点击右上角分享

            return {

                title: 'title', // 分享标题

                desc: 'desc', // 分享描述

                path: 'path' // 分享路径

            }

        }

    })

      wxml:

     

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    18

    19

    20

    21

    22

    <view class="page">

      

      <!--顶部导航栏-->

      <view class="swiper-tab">

        <view class="tab-item {{currentTab==0 ? 'on' : ''}}" data-current="0" bindtap="swichNav">Tab1</view>

        <view class="tab-item {{currentTab==1 ? 'on' : ''}}" data-current="1" bindtap="swichNav">Tab2</view>

        <view class="tab-item {{currentTab==2 ? 'on' : ''}}" data-current="2" bindtap="swichNav">Tab3</view>

      </view>

      

      <!--内容主体-->

      <swiper class="swiper" current="{{currentTab}}" duration="200" bindchange="swiperChange">

        <swiper-item>

          <view>我是tab1</view>

        </swiper-item>

        <swiper-item>

          <view>我是tab2</view>

        </swiper-item>

        <swiper-item>

          <view>我是tab3</view>

        </swiper-item>

      </swiper>

    </view>

      wxss:

     

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    18

    19

    20

    21

    22

    23

    24

    25

    26

    27

    28

    .page {

      margin-left: 10rpx;

      margin-right: 10rpx;

    }

      

    .swiper-tab {

      display: flex;

      flex-direction: row;

      line-height: 80rpx;

      border-bottom: 2rpx solid #777;

    }

      

    .tab-item {

      width: 33.3%;

      text-align: center;

      font-size: 15px;

      color: #777;

    }

      

    .swiper {

      height: 1100px;

      background: #dfdfdf;

    }

      

    .on {

      color: blue;

      border-bottom: 5rpx solid blue;

    }

  • 相关阅读:
    PF不明内存泄露已解决,白头发也没了(转)
    第06篇 MEF部件的生命周期(PartCreationPolicy)
    [MEF]第05篇 MEF的目录(Catalog)筛选
    [MEF]第04篇 MEF的多部件导入(ImportMany)和目录服务
    [MEF]第03篇 MEF延迟加载导出部件及元数据
    [MEF]第02篇 MEF的导入导出契约
    关于android的设备管理器-DevicePolicyManager(二)
    android KK版本号收到短信后,点亮屏的操作
    windows server 2008 安装Microsoft ActiveSync 6.1提示缺少一个Windows Mobile设备中心所须要的Windows组件
    设计模式
  • 原文地址:https://www.cnblogs.com/xiaomeng95/p/13045210.html
Copyright © 2020-2023  润新知