vue 元素添加多张背景图
<div class="logback" :style="{backgroundImage:'url('+imgUrl2+'),url('+imgUrl+')'}">
data() {
return {
imgUrl:require("@/assets/img/back1.png"),
imgUrl2:require("@/assets/img/back2.png"),
}
},
.logback{
width: 365px;
height: 265px;
background-repeat: no-repeat, no-repeat;
background-position: 30px 184px,-66px -74px;
background-size: 334px,430px;
opacity: 0.6;//调节透明度
}