微信小程序图片占满全屏幕

<view class='bg'>
  <image src='../assets/bg.png' class='full'></image>
</view>
/* 给盒子添加绝对定位,让图片占满全屏幕 */
.bg { 
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -99999;
}
.bg image {
  width: 100%;
  height: 100%;
}
 
posted @ 2019-01-10 18:11  逍遥玩儿  阅读(9769)  评论(0编辑  收藏  举报