提前感谢任何建议。我正在尝试构建一个使用基本视差滚动元素的网站。基本上,标题位于页面顶部的60%。当用户滚动时,标题下方的内容会捕获到标题并在其下方流动。
我可以完美地完成所有这些工作,但我也希望标题在它到达时粘在页面顶部。我已经把它做了一些工作,但是当标题被卡住时,它非常华丽/跳跃。我见过其他有类似问题的人,他们似乎源于将标题位置从静态切换到固定,但在我的布局中,标题总是固定的,所以我有点困惑。也许我使用的定位看起来有点奇怪,但经过多次实验,这是我能得到的最接近的。
这是一个JSFiddle,代码:
http://jsfiddle.net/kromoser/Lq7C6/11/
JQuery的:
$(window).scroll(function() {
var scrolled = $(window).scrollTop();
if (scrolled > $('#header').offset().top) {
$('#header').css('top','-60%');
}
else {
$('#header').css('top',(0-(scrolled*0.6))+'px');
}
});
CSS:
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
#header {
position: fixed;
top: 0;
margin-top: 60%;
z-index: 3;
background: #FFF;
width: 100%;
}
#content {
min-height: 100%;
position: relative;
top: 100%;
}
HTML:
<div id="header">This header should stick to top when scrolled.</div>
<div id="content">Content goes here</div>
感谢您的帮助!
答案 0 :(得分:2)
我试过这个,我认为这应该是适合你的。
更改position:absolute;
在document.ready中,将标题的初始位置保留在Var中(为了检测标题在滚动顶部时应保持其位置的时间):
var initialPos = $('#header').offset().top;
并添加以下jquery来检测滚动位置:
if( scrolled > initialPos){
$('#header').css({
position:"fixed",
top:'0px'
});
}else{
$('#header').css({
position:"absolute",
top:initialPos+"px"
});
}
<强> FIDDLE 强>
答案 1 :(得分:1)
它的原因是因为你的滚动函数每次调用它时都会将css应用于标题,这是每次用户滚动时。当它被应用时,它会在if语句中的2个值之间不断跳跃。
我认为执行此操作的更好方法是在标题处于顶部位置时将标题应用于标题,并在css中设置该类的样式。然后,即使多次应用addClass(),css也不会导致它跳转。
if( scrolled > $('#header').offset().top){
$('#header').addClass('top');
}
.top {
top: 60px; // or whatever amount you want it to stay when it is done moving
}
答案 2 :(得分:1)
“Scrollorama”插件处理得非常好!请看这里的“Pin it”和“Parallax”部分:http://johnpolacek.github.io/scrollorama/。就个人而言,当我尝试创建一个平滑的过渡时,我发现使用这些插件最好的运气而不是自己编写它们。
另一件需要关注的事情是Stellar.js。非常容易使用,如果你可以使用背景位置过渡而不是元素过渡,它会更顺畅,更少跳跃。 Stellar.js和Scrollorama很好地协同工作。