微信小程序自定义底部导航带跳转功能

作者:焕想 时间:2024-05-02 17:25:49 

本文实例为大家分享了微信小程序实现底部导航带跳转功能的具体代码,供大家参考,具体内容如下

index.wxml


<!--底部导航 -->
<view class='footer'>
<view class='footer_list' data-id='{{index}}' catchtap='Navigation' wx:for="{{listInfo}}" data-current="{{index}}" wx:key="this" bindtap="chooseImg">
<image class="footer-image" hidden='{{curIdx===index}}' src="{{item.imgUrl}}"></image>
<image class="footer-image" hidden='{{curIdx!==index}}' src="{{item.curUrl}}"></image>
<view class="footer-text">{{item.text}}</view>
</view>
</view>
<!--底部导航 -->

index.js


page({

const app = getApp();
data:{
  // 底部导航
 curIdx: 0,
 listInfo: [
 {
  text: '首页',
  imgUrl: '/image/index.png',
  curUrl: '/image/index_active.png',
 },
 {
  text: '兼职入口',
  imgUrl: '/image/market.png',
  curUrl: '/image/market_active.png',
 },
 {
  text: '个人中心',
  imgUrl: '/image/my.png',
  curUrl: '/image/my_active.png',
 },
 ]
},
Navigation: function (event) {
var that = this;
app.Navigation(event, that);
},
// 底部导航
chooseImg: function (e) {
this.setData({
 curIdx: e.currentTarget.dataset.current
})
// console.log(e)
// console.log(this.data.curIdx)
},
// 底部导航结束
})

app.wxss


/*自定义底部导航开始 */
.footer {
position: fixed;
bottom: 0;
width: 100%;
height:100rpx; /*footer的高度*/
background: #ffffff;
z-index: 500;
border-top:1rpx solid #ccc;
display: flex;
flex-direction: row;
}
.footer_list{
width:17%;
height:100%;
text-align:center;
padding-top:8rpx;
margin-left:60rpx;
margin-right:62rpx;
}
.footer-image{
width:40%;
height:45%;
}
.footer-text{
font-size: 22rpx;
}
/*底部导航结束 */

part-time.wxml


<!--底部导航 -->
<view class='footer'>
<view class='footer_list' data-id='{{index}}' catchtap='Navigation' wx:for="{{listInfo}}" data-current="{{index}}" wx:key="this" bindtap="chooseImg">
<image class="footer-image" hidden='{{curIdx===index}}' src="{{item.imgUrl}}"></image>
<image class="footer-image" hidden='{{curIdx!==index}}' src="{{item.curUrl}}"></image>
<view class="footer-text">{{item.text}}</view>
</view>
</view>
<!--底部导航 -->

part-time.js


page({
const app = getApp();
data:{
  // 底部导航
curIdx: 1,
listInfo: [
 {
 text: '首页',
 imgUrl: '/image/index.png',
 curUrl: '/image/index_active.png',
 },
 {
 text: '兼职入口',
 imgUrl: '/image/market.png',
 curUrl: '/image/market_active.png',
 },
 {
 text: '个人中心',
 imgUrl: '/image/my.png',
 curUrl: '/image/my_active.png',
 },
]
},
 Navigation: function (event) {
var that = this;
app.Navigation(event, that);
},
// 底部导航
chooseImg: function (e) {
this.setData({
 curIdx: e.currentTarget.dataset.current
})
// console.log(e)
// console.log(this.data.curIdx)
},
// 底部导航结束
})

my.wxml


<!--底部导航 -->
<view class='footer'>
<view class='footer_list' data-id='{{index}}' catchtap='Navigation' wx:for="{{listInfo}}" data-current="{{index}}" wx:key="this" bindtap="chooseImg">
<image class="footer-image" hidden='{{curIdx===index}}' src="{{item.imgUrl}}"></image>
<image class="footer-image" hidden='{{curIdx!==index}}' src="{{item.curUrl}}"></image>
<view class="footer-text">{{item.text}}</view>
</view>
</view>
<!--底部导航 -->

Page({
const app = getApp();
/**
* 页面的初始数据
*/
data: {
// 底部导航
curIdx: 2,
listInfo: [
 {
 text: '首页',
 imgUrl: '/image/index.png',
 curUrl: '/image/index_active.png',
 },
 {
 text: '兼职入口',
 imgUrl: '/image/market.png',
 curUrl: '/image/market_active.png',
 },
 {
 text: '个人中心',
 imgUrl: '/image/my.png',
 curUrl: '/image/my_active.png',
 },
]
},
// 导航
Navigation: function (event) {
var that = this;
app.Navigation(event, that);
},
// 底部导航
chooseImg: function (e) {
this.setData({
 curIdx: e.currentTarget.dataset.current
})
// console.log(e)
// console.log(this.data.curIdx)
},
// 底部导航结束
})

效果图:

微信小程序自定义底部导航带跳转功能

来源:https://blog.csdn.net/qq_38815953/article/details/81274230

标签:微信小程序,底部导航
0
投稿

猜你喜欢

  • 详解Python编程中对Monkey Patch猴子补丁开发方式的运用

    2021-04-15 00:17:15
  • ASP如何操作Excel(读取,输出)

    2007-08-21 19:57:00
  • Django实现简单的分页功能

    2021-08-08 20:53:14
  • SQL Server 2005 更改安装路径目录的方法小结

    2024-01-25 12:15:45
  • python中将zip压缩包转为gz.tar的方法

    2022-02-28 18:50:49
  • 更改localhost为其他名字的方法

    2023-11-23 08:07:52
  • tab(标签)在使用时的禁忌

    2009-04-16 13:06:00
  • 基于OpenCv实现的人脸识别(附Python完整代码)

    2022-08-10 21:49:27
  • 仿jQuery的siblings效果的js代码

    2024-04-28 09:36:34
  • Python 绘图和可视化详细介绍

    2021-02-16 18:17:31
  • SQL Server AlwaysOn读写分离配置图文教程

    2024-01-19 10:20:20
  • JS使用ajax从xml文件动态获取数据显示的方法

    2024-04-19 10:06:36
  • Windows下使Python2.x版本的解释器与3.x共存的方法

    2021-03-14 22:22:17
  • 深入理解NumPy简明教程---数组3(组合)

    2023-07-15 06:22:39
  • 详解Python编程中基本的数学计算使用

    2022-12-12 13:52:04
  • 使用canal监控mysql数据库实现elasticsearch索引实时更新问题

    2024-01-20 22:48:39
  • Go 互斥锁和读写互斥锁的实现

    2024-04-25 15:00:41
  • python 按不同维度求和,最值,均值的实例

    2023-06-12 15:08:23
  • JS中getElementsByClassName与classList兼容性问题解决方案分析

    2023-08-25 05:39:06
  • MySQL中事务概念的简洁学习教程

    2024-01-15 18:05:46
  • asp之家 网络编程 m.aspxhome.com