本来想看看有没有什么成熟的方案,结果发现全都失效了,于是自己搞了个css

实现的方式很简单,在自定义css中添加以下内容

1
2
3
4
5
6
7
8
9
@media (max-width: 768px) {
#web_bg {
background-image: url('图片url') !important;
background-repeat: no-repeat !important;
background-attachment: fixed !important;
background-position: center center !important;
background-size: cover !important;
}
}

  • 就是那么简单🤣