添加固定背景图像并将前部div滚动到html页面

时间:2014-03-18 15:25:57

标签: javascript jquery html css

我正在尝试使用具有滚动前div的css将固定背景添加到html页面。但在这之后我的JavaScript表单没有被加载。但当我删除该图像并清除CSS时一切正常,

添加bg图像后

style.css:

html{
width:100%;
height:100%;
position:fixed;
background: url('../images/bg.png') no-repeat center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}

body{
}
.wrap {
position:absolute;
width:100%;
overflow:scroll;
}

但是当我清除它时一切正常,

html{
}
body{
}
.wrap {
}

请参阅附件图片,

a

enter image description here

1 个答案:

答案 0 :(得分:0)

background-position: fixed;

而不是

position: fixed;

编辑:虽然我不确定我完全理解你的问题。