2

简短的问题:如何使用 css 实现这种滚动效果?->

http://focuslabllc.com/

我已经尝试过了:

#one {
    background: url(http://images.buzzillions.com/images_products/07/02/iron-horse-    maverick-elite-mountain-bike-performance-exclusive_13526_100.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment:fixed;
}

#two {
    background: url(http://img01.static-nextag.com/image/GMC-Denali-Road-Bike/1/000/006/107/006/610700673.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment:fixed;
}

谢谢!:)

4

2 回答 2

6

它被称为“窗帘展示”,但在这种情况下它是相反的。 http://www.thecssninja.com/css/reveal-effect

本质上,第一张“幻灯片”位于所有其他内容的“下方”,并设置为position: fixed和说z-index: 1,所有其他内容都设置为position: relativez-index: 10

http://jsfiddle.net/3n1gm4/8gDDy/

所以在代码中

HTML

<div class="slide1">CONTENT</div>
<div class="slide2">CONTENT</div>

CSS

.slide1 { 
    position: fixed;
    z-index: 1;  /* sets it below the other slides in the layer stack */
    height: 100%
}
.slide2 {
    position: relative;
    z-index: 10;  /* sets it above .slide1  */
    margin-top: 100%; /* this pushes it below .slide1 in the scroll */
    height: 100% /* full length slides */
}

*这很快就完成了,可能不是 100% 准确,但旨在让您对那里发生的事情有一个基本的了解。

于 2013-10-28T15:47:39.040 回答
4

好的,你可以只用 CSS 来做到这一点。

HTML

<div class="main">Sample text/div>
<div class="reveal-me-holder"></div>
<div class="reveal-me">Revealed</div>

CSS

body {
    margin:0;
}
.main {
    height: 700px; 
    position:relative;
    z-index: 2; 
    background: red;
} 
.reveal-me {
    height: 500px;
    position:fixed; 
    bottom:0; 
    width:100%;
    background: black;
    color:white;
 } 
.reveal-me-holder {
    height: 500px;
} 

这个jsfiddle显示了结果。

于 2013-10-28T15:18:15.983 回答