Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://zynga.github.io/scroller
Accelerated panning and zooming for HTML and Canvas
https://zynga.github.io/scroller
Last synced: 3 months ago
JSON representation
Accelerated panning and zooming for HTML and Canvas
- Host: GitHub
- URL: https://zynga.github.io/scroller
- Owner: pbakaus
- License: mit
- Created: 2011-09-13T09:05:18.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2020-08-10T14:11:15.000Z (over 4 years ago)
- Last Synced: 2024-08-09T06:57:03.760Z (3 months ago)
- Language: JavaScript
- Size: 328 KB
- Stars: 3,890
- Watchers: 89
- Forks: 421
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Zynga Scroller
==============A pure logic component for scrolling/zooming. It is independent of any specific kind of rendering or event system.
The "demo" folder contains examples for usage with DOM and Canvas renderings which works both, on mouse and touch driven devices.
Demos
-----See our demos online here: http://zynga.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.
```js
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.