开发者社区 问答 正文

移动端页面使用background-attachment:fixed;固定背景图片

在某些机型中微信中打开不起作用,大家遇到过没?怎么解决的呢

展开
收起
杨冬芳 2016-06-16 13:56:57 3831 分享 版权
1 条回答
写回答
取消 提交回答
  • IT从业

    移动端对background-attachment: fixed支持的不好,但可以hack一下。

    body:before {
      content: ' ';
      position: fixed;
      z-index: -1;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: url(path/to/image) center 0 no-repeat;
      background-size: cover;
    }
    
    2019-07-17 19:40:46
    赞同 展开评论
问答地址: