- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个网站,左侧有一个栏,应该与用户保持一致。因此,当用户滚动时,侧边栏会一直滚动,直到它距页面顶部 5px。从那时起,它应该被锁在那里。
当然,视口(viewport)可能比左侧栏小,所以左侧栏不能完全适合屏幕。虽然不是很戏剧化。但是,如果用户滚动到底部,侧边栏的底部“点击”页面的页脚,然后再次与页面一起滚动,我会喜欢它。
这是我得到的代码:我的网站的基本设置和我问题第一部分的尝试(但你会发现它不起作用):jsfiddle .
我觉得问题的第一部分比较清楚,但第二部分可能有点难以理解,所以这是一个模型:您可以看到没有显示任何文本,因为文本位于视口(viewport)上方。
这是我尝试第一部分的 js:
$(document).ready(function () {
var theLoc = 5;
var links = $('#left');
$(window).scroll(function () {
console.log('scroll');
if (theLoc >= $(window).scrollTop()) {
if (links.hasClass('fixed')) {
links.removeClass('fixed');
}
} else {
if (!links.hasClass('fixed')) {
links.addClass('fixed');
}
}
});
});
但可能更多的是 css 问题:
.fixed {
position:fixed;
}
我尝试再次指定高度等(因为它看起来非常大),但没有任何进展。
最佳答案
我刚才做了这个,这是我为此创建的代码:View the JSFiddle .
(您可能需要稍微更改您的标记,我不确定这与您拥有的表格布局的效果如何,我建议使用 divs
并 float 它们来布局您的内容。),或者,您可以使用下面的代码/逻辑和 roll your own
使用您自己的布局。
基本上,
- 获取我们的元素
- 获取侧边栏在页面加载时的位置
- 获取 #content.outerHeight()
一旦我们有了这些变量,在 window scroll
上测试我们是否是 <=
(小于或等于)我们原来的sidebarTop position
或检查我们是否通过了 blogHeight
,如果 2 中的任何一个为真,则删除粘性类,elseif
我们的卷轴是>=
我们的原创sidebar
位置,然后添加 .sticky
类(具有 position: fixed
)。
Check the JSFiddle (Click here)
Javascript 是这样的:
// Cache our vars for the fixed sidebar on scroll
var $sidebar = $('#sidebar-nav');
// Get & Store the original top of our #sidebar-nav so we can test against it
var sidebarTop = $sidebar.position().top;
// Edit the `- 10` to control when it should disappear when the footer is hit.
var blogHeight = $('#content').outerHeight() - 10;
// Add the function below to the scroll event
$(window).scroll(fixSidebarOnScroll);
// On window scroll, this fn is called (binded above)
function fixSidebarOnScroll(){
// Cache our scroll top position (our current scroll position)
var windowScrollTop = $(window).scrollTop();
// Add or remove our sticky class on these conditions
if (windowScrollTop >= blogHeight || windowScrollTop <= sidebarTop){
// Remove when the scroll is greater than our #content.OuterHeight()
// or when our sticky scroll is above the original position of the sidebar
$sidebar.removeClass('sticky');
}
// Scroll is past the original position of sidebar
else if (windowScrollTop >= sidebarTop){
// Otherwise add the sticky if $sidebar doesnt have it already!
if (!$sidebar.hasClass('sticky')){
$sidebar.addClass('sticky');
}
}
}
HTML:
<header>This is the header!</header>
<ul id="sidebar-nav" class="nav nav-list">
<li><a href="#">Home</a></li>
<li><a href="#">Blog</a></li>
</ul>
<div id="content">Content in here, scroll down to see the sticky in action!</div>
<div class="clear"></div>
<div id="footer">This is the #footer</div>
CSS:
/* Sticky our navbar on window scroll */
#sidebar-nav.sticky {position:fixed;top:5px;}
/* Other styling for the html markup */
header {
border:1px solid #aaa;
background-color:yellow;
margin-bottom:5px;
height:50px;
}
#sidebar-nav {
width:150px;
border:1px solid #ddd;
margin:0;
padding:0;
float:left;
}
#sidebar-nav li {
list-style:none;
border:1px solid #ddd;
margin:10px;
padding:2px;
}
#content {
height:2000px;
width:500px;
padding:10px;
border:1px solid #ddd;
margin:0 0 10px 5px;
float:right;
}
#footer {
height:800px;
border:1px solid green;
background-color:#ddd;
}
.clear {
clear:both;
}
:)
关于javascript - 如何创建 `sticky` float 固定/滚动侧边栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17323098/
我有一个父容器。父容器有 2 个带有粘性页眉和页脚的子容器。问题在于,当用户滚动并到达页脚区域时,粘性页眉的位置会发生变化,即它会与其他可滚动内容一起上升。我为演示创建了一个 fiddle 。 htt
我有一个应用文件,其中包含我自己的自定义应用栏和不同的页面组件: const styles = theme => ({ appBar: { width:'100%', },
这是我的 jsFiddle带有完整的代码示例。 我正在尝试实现 sticky footer .如您所见,我的登录表单非常简短。尽管如此,页脚应该一直固定到页面底部。我试过: .footer {
我有一个这样的 div : HTML Title
如何让我的粘性导航菜单在粘到屏幕顶部后专门使用 GetUIKit 框架更改背景颜色(即蓝色到白色)? 这是我的代码: wo
我被困在这个问题上有一段时间了,我想我会分享这个position: sticky + flexbox gotcha: 我的粘性 div 工作正常,直到我将我的 View 切换到一个 flex 盒容器,
如果你打开这个 Fiddle https://jsfiddle.net/17uwnsq6/4/在 Safari(12.1.2,但应该适用于所有最新版本)中并开始向下滚动白色可滚动区域,起初粘性“标题”
我在我的网页上使用 jquery.sticky.js。 Div 工作正常,即粘性,但我需要在页脚之前停止 div。 我使用下面的代码来粘性 DIV jQuery(文档).ready(function(
使用 position:sticky 将此代码添加到我的粘性元素 var $sticky = $('.grid-container .sticky'), $stickyTo = $('.grid-
我正在努力实现一些我不确定是否可能实现的事情。请注意,我正在寻找纯 CSS 解决方案,我知道我可以用 JS 解决这个问题,但我不想这样做。 考虑以下笔: https://codepen.io/fchr
我向我的网上商店添加了一个粘性 header ,它适用于 FF、Chrome、Edge。 在 Safari(Windows 10)中执行 JavaScript, header 被固定和转换 - 但不可
我遇到过这两个用于 node js 的粘性 session 库 https://github.com/indutny/sticky-session https://github.com/wzrdtal
WordPress - 元素。尝试优化代码时出了点问题,现在我在页面的第一部分上方有一个巨大的空白空间,我正试图摆脱它。我是新手,正在使用 Elementor,所以我只能使用自定义 CSS。问题出现在
我怎样才能让 Foundation 的粘性元素只粘在小断点上? data-sticky-on="small"适用于小及以上 最佳答案 对于那些有兴趣的人。我在使用 sass 时找到了这个解决方案。 /
我想创建网格布局,我想搁置以坚持 top: 0并填充所有剩余高度,例如100% 的高度,当我向下滚动时,我需要将旁边的高度更改为 100% 减去页脚高度。没有JS可以做到吗? * { paddin
我正在为一个 friend 制作一个网站,我想将导航栏设为粘性。这是一个例子:http://www.w3schools.com/html/default.asp .我想要一张图片,其中标题在示例中。
我们的页面上有一个粘性侧面板,使用以下非常简单的 CSS 实现: position: fixed; top:62px; bottom:10px; top 和 bottom 属性创建所需的边距。 问题在
我正在使用 几乎 纯 css,(仅在 css 中执行此操作 不是 要求)背景图像和相邻的选择器用于呈现独特的人类可读的页面当用户将鼠标悬停在水平堆叠的图像上时(在页面右侧,每个图像都使用顺序后缀的类名
如果您不知道 position:sticky 是什么,请观看这个 20 秒长的视频:https://www.youtube.com/watch?v=jA67eda5i-A . 这个 CSS 功能在
我已将一个元素设置为粘性,但我没有定义元素应保持粘性的区域。当前区域不是我选择的,而是在我应用 position:sticky 时自动定义的。显然,我想完全控制我的粘性元素用作事件区域的空间,并且我想
我是一名优秀的程序员,十分优秀!