⼩程序开发背景图显⽰功能
这两天开发⼩程序,在设置背景图⽚时,发现在wxss⾥⾯设置 background-image:(url)属性,不管是开发⼯具还是线上都⽆法显⽰。经过查资料发现,background-image 只能⽤⽹络url或者base64图⽚编码,本地图⽚只能⽤ image标签src属性才⾏。当然 image标签src属性也可以使⽤⽹络url或者base64图⽚编码。
  下⾯通过 image 标签src属性设置,实现背景图显⽰
  界⾯结构:
<view class='set-background'>
<image class='background-image' src='{{untryPic}}'></image>
<view class='background-content'>
<view class="set-background-avatar" background-size="cover">
<image class="post-specific-image" src="{{item.picture}}"></image>
</view>
</view>
</view>
  wxss样式:
.set-background {
怎么设置主题背景display: flex;
flex-direction: column;
align-items: center;
height: 150px;
}
.set-background-avatar {
width: 220px;
height: 150px;
}
.background-content {
position: absolute;
z-index: 1;
}
.background-image {
width: 225px;
height: 150px;
opacity: 0.8;
}
.post-specific-image {
width: 215px;
height: 150px;
vertical-align: middle;
}
  显⽰结果:
总结
以上所述是⼩编给⼤家介绍的⼩程序开发背景图显⽰功能,希望对⼤家有所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。在此也⾮常感谢⼤家对⽹站的⽀持!