| 1234567891011121314151617181920212223 |
- /* Nice scrollbar */
- $(document).on('ready', function() {
- $(".scrollable-nice").niceScroll({
- horizrailenabled: false,
- cursorborder: "0",
- cursorwidth: "6px",
- cursorcolor: "#363636",
- zindex: "5555",
- autohidemode: true,
- bouncescroll: true,
- mousescrollstep: '40',
- scrollspeed: '100',
- background: "#cdcdcd",
- cursoropacitymax: "0.6",
- cursorborderradius: "0"
- });
- $(".scrollable-nice").getNiceScroll().resize();
- });
|