目前在 Firefox 和 Safari 上,background-attachment: fixed属性正在工作,但在 Chrome 上没有响应。
这是适用于 FF 和 Safari 的页面 http://prestonmcpeak.com/work/enigma.html
这是我正在寻找的在所有三个浏览器中都可以使用的预期效果:http: //codyhouse.co/demo/alternate-fixed-scroll-background/index.html
我感觉这与页面某处的位置标签有关。
<section class="project-header ">
<div class="project-background show-for-large-up"></div>
<section class="enigma"></section>
</section>
.project-header {
section {
position: fixed;
height: 100%;
width: 100%;
top: 0;
left: 0;
z-index: -1;
&.enigma {
background-size: contain;
background-attachment: fixed;
}
}
.project-background {
padding: 20% 0;
margin: 0;
}
.enigma {
background: url(../assets/img/enigma-1-m.jpg) no-repeat center top;
}