uniapp(微信小程序)background-image无法读取本地图片

uniapp(微信小程序)background-image无法读取本地图片_第1张图片

解决方案:

<view class="container">
  <image class="bg-image" src="/static/local-image.png">image>
  
  <view class="content">其他元素view>
view>

/* WXSS 示例 */
.container {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.content {
  position: relative;
  z-index: 1;
}

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