gpt4 book ai didi

jquery - 视差滚动 - 在绝对元素上滚动

转载 作者:太空宇宙 更新时间:2023-11-04 14:09:38 25 4
gpt4 key购买 nike

我的页面上有一个绝对位置“英雄”部分。向下滚动页面时,我想让下面的内容滚动到英雄部分的顶部。

为此,我会在您向下滚动页面时更新下方内容的 top 位置。但是,这样做似乎会将英雄单元推离页面,而不是简单地滚动到页面顶部。

HTML:

<div class="container">
<section class="hero">
<div class="hero-content">
<h1>loud noises.</h1>
<p class="strapline">we make loud noises so you don't have to</p>
</div>
</section>
<div class="inner">
<section class="feature-1">
<h2>Some awesome feature</h2>
</section>
<section class="feature-2">
<h2>Some awesome feature</h2>
</section>
<footer></footer>
</div>
</div>

CSS:

.hero {
position: absolute;
background-color: #3498db;
text-align: center;
overflow: hidden;
z-index: 0;
background-color: #fff;
/*max-height: 768px; set the height limit here */
top: 0;
left: 0;
right: 0;
bottom: 0;
}

.inner {
position: relative;
top: 100%;
z-index: 100;
}

JavaScript:

$(window).scroll(function () {
$('.inner').css('top', $('.hero').height() - $(window).scrollTop());
});

演示:

http://fiddle.jshell.net/benfosterdev/LycXL/

最佳答案

看来你已经给了 .hero 绝对值,而不是尝试使用 fixed

CSS

.hero {
position: fixed;
}

Working jsFiddle Demo

关于jquery - 视差滚动 - 在绝对元素上滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20883686/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com