npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

scroll-sensor

v0.1.1

Published

Scroll Sensor simulate scroll bar on a not scrollable dom.It has features of mouse wheel, mouse down move, touch move and scroll inertia.

Downloads

23

Readme

scroll-sensor

Introduction

Scroll Sensor simulate scroll bar on a not scrollable dom.It has features of mouse wheel, mouse down move, touch move and scroll inertia.

You can know user's scroll behavior by listening events.It is very useful in canvas animation and other field.

Here is a Demo.

Install and import

Scroll Sensor can be installed by npm or yarn.And it can be imported by ES6 import grammar,commonJs grammar or including by script tag.

Install by NPM

npm install scroll-sensor

Import by ES6

import {ScrollSensor} from 'scroll-sensor';

Include by script tag

<script src="https://unpkg.com/scroll-sensor@latest/dist/scroll-sensor.min.js"><script>

Simple usage

const scrollSensor = new ScrollSensor({
  element: document.querySelector('.some-class'),
});
scrollSensor.on('scroll', event => {
  // do some thing by event.scrollTop, event.scrollLeft, event.scrollX, event.scrollY
})

API

ScrollSensor({element,options,initialScrollTop,initialScrollLeft})

Main class of scroll-sensor.Call it by "new" to create a scroll-sensor instance.

  • element <HTMLElement> The dom element to create scroll-sensor instance.User's scroll behavior on it will be listened.
  • options <OptionsInterface> Options.See detail of options below.It is optional.
  • initialScrollTop <number> Set the initial scroll top.
  • initialScrollLeft <number> Set the initial scroll left.

scrollSensor.scrollTop/scrollSensor.scrollLeft

  • type:<number>

These two properties get or set total scroll distance vertically and horizontally.

They are like Element.scrollTop and Element.scrollLeft

scrollSensor.setOptions(options)

Reset the options.

  • options <OptionsInterface> Options.It is optional.

scrollSensor.destroy()

Release the resources and no longer emit event.

It should be called when you no longer use this scroll sensor instance.

Event

You can add or remove event listener by methods in "events" lib, such as on(), off(), etc.

event:"scroll"

This event is emitted when user scroll on the element or inertia scroll.

A event object will pass to the event listener.It has for properties.

Options

Options of Scroll Sensor.It passed by constructor or setOptions method.

mouseWheelIsEnable/mouseMoveIsEnable/touchIsEnable

  • type: <boolean>
  • default: true

Whether the mouse wheel/mouse down move/touch move is enable.If it set to false, mouse wheel/mouse down move/touch move on the element will be no effect.

mouseWheelXSpeed/mouseWheelYSpeed/mouseMoveXSpeed/mouseMoveYSpeed/touchXSpeed/touchYSpeed

  • type: <number>
  • default: 1

Scroll speed when mouse wheeling/mouse down moving/touch moving on the x-axis and y-axis.It will multiply the actual moving pixel distance.

If it set to 1, scroll distance will same as the actual moving distance.

mouseMoveInertiaXDeceleration/mouseMoveInertiaYDeceleration/touchInertiaXDeceleration/touchInertiaYDeceleration

  • type: <number>
  • default: Infinity

The inertia deceleration after mouse down moving/touch moving.It's unit is pixels/s^2.

Scroll Sensor will auto calculate the end speed of mouse down moving/touch moving.When user end the move, it will keep scroll some distance and slow down with a deceleration until to 0.

If it set to Infinity, there will no inertia.It is suggests set to about 5000.

mouseMoveInertiaXMaxSpeed/mouseMoveInertiaYMaxSpeed/touchInertiaXMaxSpeed/touchInertiaYMaxSpeed

Scroll Sensor will auto calculate the end speed of mouse down moving/touch moving used to inertia move.If the end speed greater than this option, the end speed will set to this option.

minScrollTop/minScrollLeft/maxScrollTop/maxScrollLeft

  • type: <number>
  • default: minScrollTop:0; minScrollLeft:0; maxScrollTop:Infinity; maxScrollLeft:0;

The min/max value of scrollTop/scrollLeft.The scrollTop/scrollLeft value can't scroll out of this range.