MCPcopy Index your code
hub / github.com/asvd/naturalScroll

github.com/asvd/naturalScroll @v0.2.2

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.2.2 ↗ · + Follow
1 symbols 2 edges 1 files 0 documented · 0%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

natural scroll

Objects in real life never stop or start moving instantly. Having this in mind, natural scroll performs scrolling smoothly and naturally: it starts and finishes the movement with zero speed and acceleration. If another scrolling target is specified during an animation still running, natural scroll recalculates the remaining animation frames, so that the scrolling continues smoothly and reaches the new destination. The slowdowns and accelerations do not make the animation look slower. The scrolling just feels better. A user may not even notice the magic at all, but a good design should not be noticed. For him the scrolling becomes natural, comfortable and predictable.

You can see how natural scroll works on the following web-pages (click the menu items there and carefully watch how the page is scrolled):

natural scroll has flexible FPS. Which means if a system is too slow (or a web-page is too overdesigned), natural scroll skips some of the frames, preserving the total time of animation. Therefore the destination scrolling position is reached on time and users do not have to wait any longer. Of course on faster systems the animation is more fluent.

natural scroll does not have any dependencies, it is written in vanilla javascript which means it works anywhere. And it only costs 748 bytes of minified code including the UMD-headers!

Usage

Using natural scroll is very simple. Download and unpack the distribution, or install it using Bower:

$ bower install natural-scroll

Load the naturalScroll.js module in a preferable way:

<script src="https://github.com/asvd/naturalScroll/raw/v0.2.2/naturalScroll.js"></script>

Invoke the following methods to scroll a viewport to the desired position:

// element to scroll, can be document.body
var viewport = document.getElementById('myViewport');
var positionTop = 1000;
var positionLeft = 500;

naturalScroll.scrollTop(viewport, positionTop);
naturalScroll.scrollLeft(viewport, positionLeft);

You can also provide the third argument which is an animation time (in msec, 600 by default), but I would not change it.

Have fun!

-

Follow me on twitter: https://twitter.com/asvd0

Core symbols most depended-on inside this repo

genScroll
called by 2
naturalScroll.js

Shape

Function 1

Languages

TypeScript100%

Modules by API surface

naturalScroll.js1 symbols

For agents

$ claude mcp add naturalScroll \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact