🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

A custom scrollbars jQuery plugin that feature vertical/horizontal scrollbars, scroll to, scroll by, mouse wheel, keyboard and touch support etc.

scrollbar

Documentation

mintScrollbar.js

Just another jQuery scrollbar plugin.

Demo

Demo Demo

Usage

$(".demo").mintScrollbar();

Options

{     onChange: null, // function     axis: "auto", // "x", "y", "both", "auto"     wheelSpeed: 120,     disableOnMobile: true }

Methods

$(".demo").data("mintScrollbar").resize(); $(".demo").data("mintScrollbar").update(); $(".demo").data("mintScrollbar").destroy();   $(".demo").data("mintScrollbar").scrollTo(destX, destY); $(".demo").data("mintScrollbar").scrollToX(destX); $(".demo").data("mintScrollbar").scrollToY(destY);   $(".demo").data("mintScrollbar").scrollBy(deltaX, deltaY); $(".demo").data("mintScrollbar").scrollByX(deltaX); $(".demo").data("mintScrollbar").scrollByY(deltaY);  $(".demo").data("mintScrollbar").scrollByLines(lines); $(".demo").data("mintScrollbar").scrollByPages(pages);

You May Also Like