概述
固定背景不动:background-attachment:fixed;
ios系统和某些移动端background-attachment:fixed不兼容性,没有任何效果,但可以hack一下就可以了,代码如下:
ps:想在哪个标签加背景,可以在它class后:before.
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;
}
/*实践出真知,要多实践,用心实践,多简单的事情都要动手做一做!!*/
转载于:https://www.cnblogs.com/Neilisme/p/9404119.html
最后
以上就是复杂皮带为你收集整理的ios系统和某些移动端background-attachment:fixed不兼容性的全部内容,希望文章能够帮你解决ios系统和某些移动端background-attachment:fixed不兼容性所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复