当前位置:   article > 正文

微信小程序开发之——婚礼邀请函-项目初始化(4.2)_婚礼邀请函小程序

婚礼邀请函小程序

一 概述

  • tabBar组件介绍
  • 项目初始化
  • 项目目录结构说明

二 tabBar组件介绍

2.1 常用属性表

属性说明
color未选择时,底部导航文字的颜色
selectedColor选中时,底部导航文字的颜色
borderStyle底部导航边框的颜色(如果没有写入样式会出现浅灰色线条)
backgroundColor底部导航背景色
list导航配置数组

2.2 list数组元素

属性说明
pagePath页面访问地址
iconPath未选择时,图片路径
selectedIconPath选中时,图片路径
text导航图标下方文字

三 项目初始化

3.1 创建空项目,配置app.json文件

{
  "pages": [
    "pages/index/index",
    "pages/picture/picture",
    "pages/video/video",
    "pages/map/map",
    "pages/guest/guest"
  ],
  "window":{
    "backgroundTextStyle":"light",
    "navigationBarBackgroundColor": "#ff4c91",
    "navigationBarTitleText": "婚礼邀请函",
    "navigationBarTextStyle":"black",
    "enablePullDownRefresh": false
  },
  "tabBar": {
    "color": "#ccc",
    "selectedColor": "#ff4c91",
    "borderStyle": "white",
    "backgroundColor": "#ffffff",
    "list": [{
      "pagePath": "pages/index/index",
      "text": "邀请函",
      "iconPath": "/images/invite.png",
      "selectedIconPath": "/images/invite.png"
    },{
      "pagePath": "pages/picture/picture",
      "text": "照片",
      "iconPath": "/images/marry.png",
      "selectedIconPath": "/images/marry.png"
    },{
      "pagePath": "pages/video/video",
      "text": "美好时光",
      "iconPath": "/images/video.png",
      "selectedIconPath": "/images/video.png"
    },{
      "pagePath": "pages/map/map",
      "text": "婚礼地点",
      "iconPath": "/images/map.png",
      "selectedIconPath": "/images/map.png"
    },{
      "pagePath": "pages/guest/guest",
      "text": "宾客信息",
      "iconPath": "/images/guest.png",
      "selectedIconPath": "/images/guest.png"
    }]
  },
  "style": "v2",
  "sitemapLocation": "sitemap.json"
}
  • 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

3.2 项目样式文件

page{
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

3.3 配置后的页面样式

四 项目目录结构说明

路径说明
app.js应用程序的逻辑文件
app.json应用程序的配置文件
app.wxss定义公共样式
pages/index/"邀请函"页面文件保存目录
pages/picture/"照片"页面文件保存目录
pages/video/“美好时光”页面文件保存目录
pages/map/“婚礼地点”页面文件保存目录
pages/guest/“宾客信息”页面文件保存目录
images图片文件

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/607099
推荐阅读
相关标签
  

闽ICP备14008679号