{% note info no-icon %}本来想看看有没有什么成熟的方案,结果发现全都失效了,于是自己搞了个css
{% endnote %}
实现的方式很简单,在自定义css中添加以下内容

CSS
@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;
  }
}
  • 就是那么简单🤣

评论