关于固定背景图片的方法

Posted guan905883

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于固定背景图片的方法相关的知识,希望对你有一定的参考价值。

使用background-attachment: fixed;使背景图片固定

body 
  { 
  background-image: url(bgimage.gif); 
  background-attachment: fixed;
  }

这是css的属性,所有浏览器都支持 background-attachment 属性。

 

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

body:before {
  content: ‘ ‘;
  position: fixed;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(path/to/image) center 0 no-repeat;
  background-size: cover;
}

 

总结:移动端要固定背景图片的话就用第二种方法,pc用第一种。

   不要两种一起写,会有影响。

 

以上是关于关于固定背景图片的方法的主要内容,如果未能解决你的问题,请参考以下文章

BootStrap有用代码片段(持续总结)

BootStrap实用代码片段(持续总结)

c_cpp 加载源图像固定用法(代码片段,不全)

几个关于js数组方法reduce的经典片段

几个关于js数组方法reduce的经典片段

将 JavaScript 字符串拆分为固定长度的片段