![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
video-scroller
Advanced tools
Video scrubbing on scroll with easing using no dependencies.
http://finnursig.github.io/VideoScroller
npm install video-scroller
Normal use:
<video src="video.mp4">
Using XHR to blob for performance
<video data-src="video.mp4">
new VideoScroller({
el: document.getElementById('myVideoElement')
});
Property | Type | Text | Default |
---|---|---|---|
el | element | video element | |
invert | bool | reverses playback directions / scroll direction | false |
scrollTimeout | number | how often new position is calculated when scrolling in milliseconds | 300 |
easingFunction | string / function | custom easing function, using only one parameter [0-1] and returning [0-1] | easeOutQuint |
See [EasingFunctions.js] (https://github.com/finnursig/VideoScroller/blob/master/src/EasingFunctions.js)
To get the video to scroll smoothly it has to have a generous number of keyframes, here is how you would do that using ffmpeg
ffmpeg -i input.mp4 -g 10 output.mp4
FAQs
Scrubbs html5 video based on scroll position with easing
The npm package video-scroller receives a total of 326 weekly downloads. As such, video-scroller popularity was classified as not popular.
We found that video-scroller 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.