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

scroller

v0.0.3

Published

Accelerated panning and zooming for HTML and Canvas

Downloads

5,488

Readme

Scroller

A pure logic component for scrolling/zooming. It is independent of any specific kind of rendering or event system. Scroller has been forked from ZyngaScroller to incorporate UMD support. Pull-to-refresh and EasyScroll have been removed from this fork.

The "demo" folder contains examples for usage with DOM and Canvas renderings which works both, on mouse and touch driven devices.

Demos

See ZyngaScroller's original demos here: http://popham.github.com/scroller/

Features

  • Customizable enabling/disabling of scrolling for x-axis and y-axis
  • Deceleration (decelerates when user action ends in motion)
  • Bouncing (bounces back on the edges)
  • Paging (snap to full page width/height)
  • Snapping (snap to an user definable pixel grid)
  • Zooming (automatic centered zooming or based on a point in the view with configurable min/max zoom)
  • Locking (locks drag direction based on initial movement)
  • Pull-to-Refresh (Pull top out of the boundaries to start refresh of list)
  • Configurable regarding whether animation should be used.

Options

These are the available options with their defaults. Options can be modified using the second constructor parameter or during runtime by modification of scrollerObj.options.optionName.

  • scrollingX = true
  • scrollingY = true
  • animating = true
  • animationDuration = 250
  • bouncing = true
  • locking = true
  • paging = false
  • snapping = false
  • zooming = false
  • minZoom = 0.5
  • maxZoom = 3

Usage

Callback (first parameter of constructor) is required. Options are optional. Defaults are listed above. The created instance must have proper dimensions using a setDimensions() call. Afterwards you can pass in event data or manually control scrolling/zooming via the API.

var scrollerObj = new Scroller(function(left, top, zoom) {
	// apply coordinates/zooming
}, {
	scrollingY: false
});

// Configure to have an outer dimension of 1000px and inner dimension of 3000px
scrollerObj.setDimensions(1000, 1000, 3000, 3000);

Public API

  • Setup scroll object dimensions.
    scrollerObj.setDimensions(clientWidth, clientHeight, contentWidth, contentHeight);
  • Setup scroll object position (in relation to the document). Required for zooming to event position (mousewheel, touchmove). scrollerObj.setPosition(clientLeft, clientTop);
  • Setup snap dimensions (only needed when snapping is enabled)
    scrollerObj.setSnapSize(width, height);
  • Setup pull-to-refresh. Height of the info region plus three callbacks which are executed on the different stages. scrollerObj.activatePullToRefresh(height, activate, deactivate, start);
  • Stop pull-to-refresh session. Called inside the logic started by start callback for activatePullToRefresh call. scrollerObj.finishPullToRefresh();
  • Get current scroll positions and zooming.
    scrollerObj.getValues() => { left, top, zoom }
  • Zoom to a specific level. Origin defines the pixel position where zooming should centering to. Defaults to center of scrollerObj. scrollerObj.zoomTo(level, animate ? false, originLeft ? center, originTop ? center)
  • Zoom by a given amount. Same as zoomTo but by a relative value. scrollerObj.zoomBy(factor, animate ? false, originLeft ? center, originTop ? center);
  • Scroll to a specific position.
    scrollerObj.scrollTo(left, top, animate ? false);
  • Scroll by the given amount.
    scrollerObj.scrollBy(leftOffset, topOffset, animate ? false);

Event API

This API part can be used to pass event data to the scrollerObj to react on user actions.

  • doMouseZoom(wheelDelta, timeStamp, pageX, pageY)
  • doTouchStart(touches, timeStamp)
  • doTouchMove(touches, timeStamp, scale)
  • doTouchEnd(timeStamp)

For a touch device just pass the native touches event data to the doTouch* methods. On mouse systems one can emulate this data using an array with just one element:

  • Touch device: doTouchMove(e.touches, e.timeStamp);
  • Mouse device: doTouchMove([e], e.timeStamp);

To zoom using the mousewheel event just pass the data like this:

  • doMouseZoom(e.wheelDelta, e.timeStamp, e.pageX, e.pageY);

For more information about this please take a look at the demos.