javascript - I can't make jquery scroll pane horizontal -
i have been using following code make vertical scroll bar scroll pane:
function scrollpane(){ $('.custom-scroll').jscrollpane({ showarrows: true, verticaldragminheight : 0, verticaldragmaxheight : 100, mousewheelspeed: 120, wheelspeed: 120, contentwidth: '100px' }); }
i trying make horizontal scrollbar, not working. here code:
function scrollpane(){ $('.custom-scroll').jscrollpane({ showarrows: true, verticaldragminheight : 0, verticaldragmaxheight : 100, mousewheelspeed: 120, wheelspeed: 120, contentwidth: '100px' }); $('.horizontal_bar').jscrollpane({ showarrows: true, contentwidth: '100px' }); }
and css have horizontal_bar:
.horizontal_bar{ width: 100%; height: 200px; overflow: auto; }
how make horizontal scroll pane?
Comments
Post a Comment