小程序设置背景图铺满顶部

微信   2024-12-31 16:41   105   0  

31874_eamx_8673.png

小程序页面文件index.json修改navigationStyle为custom:

{
  "usingComponents": {},
  "navigationStyle": "custom"
}

wxml:

<view class="box-top">
    <image class="box-top-pic" src="/images/top.png" mode="widthFix" />
</view>


wxss:

.box-top {
  width: 100%;
  background-color: #FC7322;
  background: linear-gradient(to bottom, #FC7322, #ffffff);
  padding-top: 20px;
  padding: 0;
  margin: 0;
}
.box-top-pic{
  width:300%;
  margin-left: -300px;
  height: 200px;
}


博客评论
还没有人评论,赶紧抢个沙发~
发表评论
说明:请文明发言,共建和谐网络,您的个人信息不会被公开显示。