首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >后台附件:修复android/ios不起作用的问题

后台附件:修复android/ios不起作用的问题
EN

Stack Overflow用户
提问于 2016-07-22 10:49:12
回答 4查看 8.9K关注 0票数 2

这是我的代码:

代码语言:javascript
复制
<div style="width: 100vw; height: 100vh; background-image: url(img/kid1/1.jpg); background-attachment: fixed; background-size: cover"></div>
<div style="width: 100vw; height: 100vh; background-image: url(img/kid1/2.jpg); background-attachment: fixed; background-size: cover"></div>

它在我笔记本电脑上的chrome浏览器上运行得很好,但在android/ios(智能设备)上却无法与应用程序chrome或任何网络浏览器兼容。问题是我确实在w3c练习模式上尝试了这个代码,它确实在我的手机上工作,所以我的代码没有错,我的手机没有错,那么这里有什么问题呢?我该如何解决这个问题呢?我是新手,所以这可能是一个新手问题,但这个错误真的让我很生气……

EN

回答 4

Stack Overflow用户

发布于 2017-06-22 07:04:48

许多手机浏览器都不支持background-attachment: fixed

如果你在这里查看:http://caniuse.com/#feat=background-attachment,你会看到为什么在你的笔记本电脑上得到的结果与在手机上得到的结果不同。

到目前为止,我发现最好的做法是将手机上的图像视为没有视差的图像。

希望能有所帮助

票数 6
EN

Stack Overflow用户

发布于 2016-07-22 11:06:22

分区封面(版本1):

HTML5:

代码语言:javascript
复制
<div class="fixed"></div>

CSS3:

代码语言:javascript
复制
.fixed { 
background: url(img/kid1/1.jpg) no-repeat center center fixed; 
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

或者:

分区封面(版本2):

HTML5:

代码语言:javascript
复制
<div class="fixed" style="background: url(img/kid1/1.jpg) no-repeat center center fixed;"></div>

CSS3:

代码语言:javascript
复制
.fixed {  
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

html或“”标签(全屏覆盖):

代码语言:javascript
复制
html { 
background: url(img/kid1/1.jpg) no-repeat center center fixed; 
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

很简单。:)

票数 1
EN

Stack Overflow用户

发布于 2019-10-02 22:36:23

在移动设备的使用角度上适当地进行视差。使用JS或background-attachment的Parallaxing :已修复;在手机上不能正常工作。

https://developers.google.com/web/updates/2016/12/performant-parallaxing

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/38517364

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档