作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在努力使 div 仅在用户滚动时显示。当他们停止滚动时,div 会淡出。
我用谷歌搜索了各种术语,但也许我的术语不正确,因为返回的结果是关于在特定高度显示 div。
有什么建议吗?
最佳答案
看看jQuery's .scroll
event handler :
var myTimeout = -1; // Var to store a timeout reference in
$(window).scroll(function() { // When the user scrolls the window
$('#myDiv').show(); // Show the div (Any element)
if(myTimeout !== -1){ // If a timeout is running
clearTimeout(myTimeout); // Clear that timeout
}
myTimeout = setTimeout(function(){ // Set a timeout to hide the div
$('#myDiv').hide(); // Function that hides the div
}, 1000); // Run the function after 1 sec (1000 ms)
});
这段代码在用户开始滚动时显示 div,然后在用户停止滚动 1 秒后隐藏它。
关于javascript - 有没有办法在用户滚动时只显示一个 div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23609466/
我是一名优秀的程序员,十分优秀!