滚动事件触发 ScrollStop
- 授权协议: Unlicense
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/ssorallen/jquery-scrollstop
软件介绍
ScrollStop 是一个 jQuery 插件,当在 Windows 系统上开始滚动和停止滚动的时候,jQuery 会触发两个事件:scrollstart 和 scrollstop。
示例代码:
$(window)
.on("scrollstart", function() { // Paint the world yellow when scrolling starts.
$(document.body).css({background: "yellow"});
})
.on("scrollstop", function() { // Paint it all green when scrolling stops.
$(document.body).css({background: "green"});
})
Prometheus: Up & Running
Brian Brazil / O'Reilly Media / 2018-7-9 / USD 49.99
Get up to speed with Prometheus, the metrics-based monitoring system used by tens of thousands of organizations in production. This practical guide provides application developers, sysadmins, and DevO......一起来看看 《Prometheus: Up & Running》 这本书的介绍吧!
