
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
animate-overflow-scroll-to
Advanced tools
Smooth element (overflow: scroll) to position with requestAnimationFrame
Smooth element scroll to position with requestAnimationFrame
and Tween.
This is a fork of scroll-to
This fork does the following:
scrollTop
/ scrollLeft
properties along with the CSS style overflow: scroll
enabled.npm i animate-overflow-scroll-to
Scroll a domNode
to the given point x, y
with the given options
:
ease
easing function defaulting to "out-circ" (view ease for more)duration
animation duration defaulting to 1000
var scrollTo = require('animate-overflow-scroll-to');
// scrollDiv should have overflow: scroll set in its style
var scrollDiv = document.getElementById('scrollDiv')
scrollTo(scrollDiv, 500, 1200, {
ease: 'out-bounce',
duration: 1500
});
You should be able to run the example.html
file to try it out.
Building should not be necessary to use it as a module.
If for whatever reason, you need to build the file (eg forking this project and updating the example.html
), you need to install component
to build the bundle.
component
is outdated, but PRs are welcomed to switch the build to something else like browserify
or webpack
.
$ npm i
$ npm install -g component
$ component build
MIT
FAQs
Smooth element (overflow: scroll) to position with requestAnimationFrame
The npm package animate-overflow-scroll-to receives a total of 0 weekly downloads. As such, animate-overflow-scroll-to popularity was classified as not popular.
We found that animate-overflow-scroll-to demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.