gpt4 book ai didi

html - CSS组合relative+fixed无跳转效果

转载 作者:行者123 更新时间:2023-11-28 04:06:06 25 4
gpt4 key购买 nike

我想给header-body 的效果就像这个网站preview.oklerthemes.com/?theme=Porto

使用相对位置(显示滚动)...并使用固定位置...但是当我放置固定位置时,我看到它到达原始位置然后出现。 --> https://jsfiddle.net/uxhgpz6e/2/

输入

所以,我想避免这种“跳跃效应”,但仍然使用相对+固定。

最佳答案

改变你的滚动值,它应该得到你想要的行为:See this fiddle

$(window).scroll(function(){

if($(window).scrollTop() > 100){
$('.header-body').css('position','fixed').css('top','-100px');
} else {
$('.header-body').css('position','relative').css('top','0');

}
});

关于html - CSS组合relative+fixed无跳转效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42954043/

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