如何修复背景图像,以便在缩小时不减小?

时间:2012-07-30 16:14:34

标签: css background fixed

我想要一个固定的背景图片,如this

这可以仅使用css而不使用任何jQuery插件吗?

1 个答案:

答案 0 :(得分:1)

CSS3方式:(ie9 + etc)

html { 
  background: url(images/bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

jQuery插件跨浏览器方式: http://bavotasan.com/2011/full-sizebackground-image-jquery-plugin/