背景图片:
方法一:
 .bg { height: 100%; width:100%; background-image:url('images/index-bg.png') ;background-attachment:fixed;background-repeat:no-repeat;background-size:cover;-moz-background-size:cover;-webkit-background-size:cover;}
方法二: 
.bg { background: url('images/index_bg.jpg') no-repeat   50% 50%;background-size: cover;padding-top:宽/高;} 

图片:
适合纯色或者重复同样图案的背景图
.indexBg{z-index:-1;background-attachment:fixed;width:100%;height: 100%;position: fixed;top:0;left:0;bottom:0;right:0;_position: absolute;_top: expression(eval(document.body.scrollTop));_left: expression(eval(document.body.scrollLeft));}
.indexBg img {height:100%;width:100%;}