@acfatah/drag-to-scroll
v1.0.0
Published
Scroll an element by mouse dragging
Downloads
3
Maintainers
Readme
drag-to-scroll
A JavaScript library that enables scrolling using mouse dragging.
Installation
Npm Installation
npm i @acfatah/drag-to-scroll
jsDelivr CDN Service
import { dragToScroll } from 'https://cdn.jsdelivr.net/gh/acfatah/[email protected]/index.min.js'
Usage
Create the class instance using the element you want to enable dragging-based scrolling.
import { dragToScroll } from '@acfatah/drag-to-scroll';
const container = document.querySelector('.container');
dragToScroll(container);