微信小程序的背景图片,效果如下:
.wxml代码:
<view class="bj"></view>
.wxss代码:
/* pages/beiJing/beiJing.wxss */
.bj {
background-image: url("https://tpc.googlesyndication.com/daca_images/simgad/12533696403315878274");
/* 定位:绝对定位 */
position: absolute;
/* 上下左右都定位到0 */
top: 0;
left: 0;
right: 0;
bottom: 0;
/* 给它足够低的层次 */
z-index: -100;
/* 背景颜色为黑色 */
background-color: #000;
/* 背景图片大小:铺满 */
background-size: cover;
/* 模糊度 */
filter: blur(3px)
}