码迷,mamicode.com
首页 > 其他好文 > 详细

关于固定背景图片的方法

时间:2018-06-08 12:00:27      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:att   url   repeat   方法   enter   back   index   for   TE   

使用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用第一种。

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

 

关于固定背景图片的方法

标签:att   url   repeat   方法   enter   back   index   for   TE   

原文地址:https://www.cnblogs.com/guan905883/p/9154463.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!