1.背景附着属性background-attachment
<div class="index-main">
<div class="container">
</div>
</div>
<style>
.index-main{
background: url(../img/bg.jpg) no-repeat top center;
width: 100%;
background-size: 100%;
min-height: 900px;
padding-top: 30px;
background-attachment:fixed
}
</style>
2.背景属性background
.index-main{
background: url(../img/bg1.jpg) no-repeat fixed 0 100px;
width: 100%;
background-size: 100%;
min-height: 1800px;
}
另推荐一博客:https://www.cnblogs.com/hnyei/archive/2012/03/12/2392017.html