
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
scroll-event-master
Advanced tools
用于在 Web 页面中监听滚动事件,可检测到达顶部、底部、最左侧和最右侧的情况,并允许自定义处理程序。
npm i scroll-event-master
或者使用 CDN 的方式:
<script src="https://unpkg.com/scroll-event-master/dist/scrollEventMaster.js"></script>
import ScrollEventMaster from "scroll-event-master";
const element = document.querySelector(".box");
const manager = new ScrollEventMaster(element as HTMLDivElement);
manager.on("bottom", () => {
console.log("到底了");
});
manager.on("top", () => {
console.log("到顶了");
});
manager.on("left", () => {
console.log("到最左了");
});
manager.on("right", () => {
console.log("到最右了");
});
ScrollEventMaster 通过 topLock、bottomLock、leftLock 和 rightLock 实现事件锁定,当值为 true 时,对应方向的到达事件处理程序将不可用,值恢复 false 时事件处理程序也会恢复。
新增事件处理程序,type 可取值 top | bottom | left | right
export type ScrollWindowEventMap = {
bottom: Event
top: Event
left: Event
right: Event
}
export type ScrollHandler<K extends keyof ScrollWindowEventMap> = (event: ScrollWindowEventMap[K]) => void
public on<K extends keyof ScrollWindowEventMap>(type: K, handler: ScrollHandler<K>): void {}
清除事件处理程序
public off(handler: ScrollHandler<any>): void {}
FAQs
用于在 Web 页面中监听滚动事件,可检测到达顶部、底部、最左侧和最右侧的情况,并允许自定义处理程序。
We found that scroll-event-master demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.