博主信息
博文 52
粉丝 1
评论 1
访问量 48755
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
1、安装小程序开发者工具 2、配置小程序底部按钮、顶部窗口 3、根据底部按钮,创建对应页面 4、列出10个组件的使用方法
小丑0o鱼
原创
637人浏览过

1、安装小程序开发者工具

前往 开发者工具下载页面 (https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html) 根据自己的操作系统下载对应的稳定版安装包进行安装

2、配置小程序底部按钮、顶部窗口
在小程序app.json下,window下配置顶部窗口navigation与底部按钮tabBar

window 配置项

  1. navigationBarBackgroundColor HexColor #000000 导航栏背景颜色,如 #000000
  2. navigationBarTextStyle string white 导航栏标题颜色,仅支持 black / white
  3. navigationBarTitleText string 导航栏标题文字内容
  4. backgroundColor HexColor #ffffff 窗口的背景色
  5. backgroundTextStyle string dark 下拉 loading 的样式,仅支持 dark / light

tabBar 配置项

  1. pagePath string 页面路径,必须在 pages 中先定义
  2. text string tab 上按钮文字
  3. iconPath string 图片路径,icon 大小限制为 40kb,建议尺寸为 81px * 81px,不支持网络图片。
  4. selectedIconPath string 选中时的图片路径,icon 大小限制为 40kb,建议尺寸为 81px * 81px,不支持网络图片。
  1. "window": {
  2. "navigationBarBackgroundColor": "#ffffff",
  3. "navigationBarTextStyle": "black",
  4. "navigationBarTitleText": "默默记账",
  5. "backgroundColor": "#eeeeee",
  6. "backgroundTextStyle": "light",
  7. "enablePullDownRefresh": false
  8. },
  9. "tabBar": {
  10. "color": "#444444",
  11. "selectedColor": "red",
  12. "backgroundColor": "#ffffff",
  13. "position": "bottom",
  14. "borderStyle": "black",
  15. "list": [{
  16. "pagePath": "pages/index/index",
  17. "text": "主页",
  18. "iconPath": "./static/img/1.png",
  19. "selectedIconPath": "./static/img/2.png"
  20. },
  21. {"pagePath": "pages/ad/ad",
  22. "text": "广告",
  23. "iconPath": "./static/img/1.png",
  24. "selectedIconPath": "./static/img/2.png"
  25. },
  26. {"pagePath": "pages/art/art",
  27. "text": "文章",
  28. "iconPath": "./static/img/3.png",
  29. "selectedIconPath": "./static/img/4.png"
  30. },
  31. {
  32. "pagePath": "pages/logs/logs",
  33. "text": "日志",
  34. "iconPath": "./static/img/3.png",
  35. "selectedIconPath": "./static/img/4.png"
  36. }
  37. ]
  38. }
  39. }
批改状态:未批改

老师批语:
本博文版权归博主所有,转载请注明地址!如有侵权、违法,请联系admin@php.cn举报处理!
全部评论 文明上网理性发言,请遵守新闻评论服务协议
0条评论
作者最新博文
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号

  • 登录PHP中文网,和优秀的人一起学习!
    全站2000+教程免费学