微信小程序实现topBar底部选择栏效果

前端之家收集整理的这篇文章主要介绍了微信小程序实现topBar底部选择栏效果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例为大家分享微信小程序实现topBar底部选择栏的具体代码,供大家参考,具体内容如下

先看一下效果底部分为三个页面,点击不同的选项就会跳转到相对应的页面去。

下面是文件夹的结构

这个分为三个页面,分别是 index,dujia,Info

下面是代码

app.json

页面,pages里面就要绑定几个 "pages/dujia/dujia","pages/index/index","pages/info/info" ],"window": { "backgroundTextStyle": "dark","navigationBarBackgroundColor": "#DF3031","navigationBarTitleText": "topBar练习","navigationBarTextStyle": "white" },"tabBar": { "color": "#000000","selectedColor": "#DF3031","list": [ { "pagePath": "pages/index/index","text": "第一页","iconPath": "images/1.png","selectedIconPath": "images/1.png" },{ "pagePath": "pages/dujia/dujia","text": "第二页","iconPath": "images/2.png","selectedIconPath": "images/2.png" },{ "pagePath": "pages/info/info","text": "第三页","iconPath": "images/3.jpg","selectedIconPath": "images/3.jpg" } ] } }

其他的页面都写在对应文件夹的.wxml文件里面。.wxml文件就想当于我们网页设计中的 html一样。

例如我的index页面

第一页

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/weapp/31417.html

猜你在找的微信小程序相关文章