nicescroll-demo.js 521 B

1234567891011121314151617181920212223
  1. /* Nice scrollbar */
  2. $(document).on('ready', function() {
  3. $(".scrollable-nice").niceScroll({
  4. horizrailenabled: false,
  5. cursorborder: "0",
  6. cursorwidth: "6px",
  7. cursorcolor: "#363636",
  8. zindex: "5555",
  9. autohidemode: true,
  10. bouncescroll: true,
  11. mousescrollstep: '40',
  12. scrollspeed: '100',
  13. background: "#cdcdcd",
  14. cursoropacitymax: "0.6",
  15. cursorborderradius: "0"
  16. });
  17. $(".scrollable-nice").getNiceScroll().resize();
  18. });