drag-scroll.js
v0.0.1
Published
DragScroll.js is a small library for scrolling by dragging your mouse across the specified container.
Downloads
3
Readme
DragScroll.js
DragScroll.js is a small library for scrolling by dragging your mouse across the specified container.
Usage
import DragScroll from "dragscroll";
...
new DragScroll({
el: this.element
});
Alternative method:
<script src="/dist/drag-scroll.js"></script>
<script>
const scrollableElement = document.querySelector('.drag-scroll');
new DragScroll({
el: scrollableElement
});
</script>
Demo
TODO