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

移动端对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) center0no-repeat;background-size: cover;}


挺好用!

简单俗套·2015年09月09日

小而美而全,非常好

隐约雷鸣·2016年01月20日

在苹果的微信,Safari中试过么?反正我试过了,虽然图片可以显示,但是滑动的时候会出现空白区域

mqliutie·2016年07月26日

在移动端,fixed 定位在滑动的时候可能会有问题,毕竟是 hack 嘛。

KevinYue·2016年07月30日

你可能感兴趣的:(移动端页面使用background-attachment:fixed;固定背景图片问题)