【微信小程序】初始化页面样式

初始化页面样式
app.wxss

page,view,text,swiper,swiper-item,image,navigator{
    padding: 0;    
    margin: 0;
    box-sizing: border-box;
}

page{
    /* 定义主题颜色 */
    --themeColor: #eb4450;
    /* 定义统一字体大小 */
    font-size: 28rpx;
}

微信小程序不支持通配符 *
主题颜色通过变量--themeColor来实现
使用主题颜色:var(--themeColor)
【微信小程序】初始化页面样式_第1张图片
导航栏
在这里插入图片描述
app.json

{
  "window": {
    "backgroundTextStyle": "light",
    "navigationBarBackgroundColor": "#eb4450",
    "navigationBarTitleText": "黑马优购",
    "navigationBarTextStyle": "white"
  }
}

【微信小程序】初始化页面样式_第2张图片

你可能感兴趣的:(微信小程序)