wendellmva
wendellmva

Reputation: 1944

horizontal scrollbars with slimscroll

I use slimscroll for my scrolling needs and it works great. Now I have need for horizontal scrolling. A quick google search gives me some results to references in the github source code and some issues which indicates that that horizontal scroll support has been added but nowhere I can I find an example. I've looked in the javascript file expecting to find a flag to switch from vertical to horizontal. Helas nothing so obvious. So my question is it possible if yes, how? An example would be greatly appreciated.

Upvotes: 6

Views: 23474

Answers (5)

Zaid Bin Khalid
Zaid Bin Khalid

Reputation: 763

Slimscroll with both axes examples using Bootstrap 4.

Click here to see the online working examples.

Upvotes: 0

Lucas
Lucas

Reputation: 301

Now you can atualize your plug-in on the SlimScroll git repository, and just use the code below to instance your slimScroll

$('#testDiv').slimscroll({
    height: 150,
    width: 300,
    axis: 'both'
});

Upvotes: 1

Saravana
Saravana

Reputation: 531

Did you try adding this code?

$(".content").mCustomScrollbar({
    axis:"x" // horizontal scrollbar
});

$(".content").mCustomScrollbar({
    axis:"yx" // vertical and horizontal scrollbar
});

Upvotes: -2

Jan Kuri
Jan Kuri

Reputation: 1067

I implemented ngSlimscroll, the rewritten version of the original slimscroll in AngularJS. It also supports horizontal scrolling. See the demo for example.

Upvotes: -2

Gromo
Gromo

Reputation: 1609

The latest version of slimscroll is 1.3.1 (from github repository) and it does not support horizontal scrollbar. Try jQuery Scrollbar or any scrollbar that supports horizontal scrolling from this scrollbar comparison table.

Upvotes: 8

Related Questions