美文网首页
02B 小程序的布局

02B 小程序的布局

作者: 卖参 | 来源:发表于2018-06-14 17:30 被阅读0次
  • 8

index.wxml 页面中写入代码,

<scroll-view class='scroll-page' scroll-y>
    <navigator class='city'>北京</navigator>
    <navigator class = 'userinfo'></navigator>
</scroll-view>

index.wxss 页面中写入代码

page{
  height:100%
}
.scroll-page{
  height:100%
}
.city{
  width: 204px;
}

用的是scroll-page组件,对它进行高度的设置,
navigator 是跳转组件.城市列表,个人中心2个跳转组件

  • 9

移动端尺寸的适配 rpx

相关文章

网友评论

      本文标题:02B 小程序的布局

      本文链接:https://www.haomeiwen.com/subject/pciyeftx.html