How to implement auto fixing a div like https://www.yahoo.com(如何实现自动修复像 https://www.yahoo.com 这样的 div)
问题描述
在雅虎网站中,向下滚动时,蓝色部分固定在顶部,而如果不滚动下来,蓝色部分不固定.
In Yahoo website, when scroll down, a blue part is fixed to the top, while if not scroll down, the blue part is not fixed.
如何实现这个?
我可以试试onScroll
功能吗?
推荐答案
在要修复的部分使用$(window).scroll(function()
.
小提琴演示:演示
$(window).scroll(function(){
if ($(window).scrollTop() >= 100) {
$('.sticky-header').addClass('fixed');
}
else {
$('.sticky-header').removeClass('fixed');
}
});
如果你想将固定部分应用到标题中,请替换 $(window).scroll(function(){}):
函数中的类名.
If you want to apply the fixed part to the header replace the class name in the $(window).scroll(function(){}):
function.
滚动时固定标题的示例:Demo-2
Example for fixed Header while scrolling : Demo-2
这篇关于如何实现自动修复像 https://www.yahoo.com 这样的 div的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何实现自动修复像 https://www.yahoo.com 这样的 div
基础教程推荐
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01