scripts.js 663 B

123456789101112131415161718192021
  1. (function() {
  2. "use strict";
  3. // custom scrollbar
  4. $("html").niceScroll({styler:"fb",cursorcolor:"#1ABC9C", cursorwidth: '6', cursorborderradius: '10px', background: '#424f63', spacebarenabled:false, cursorborder: '0', zindex: '1000'});
  5. $(".scrollbar1").niceScroll({styler:"fb",cursorcolor:"rgba(97, 100, 193, 0.78)", cursorwidth: '6', cursorborderradius: '0',autohidemode: 'false', background: '#F1F1F1', spacebarenabled:false, cursorborder: '0'});
  6. $(".scrollbar1").getNiceScroll();
  7. if ($('body').hasClass('scrollbar1-collapsed')) {
  8. $(".scrollbar1").getNiceScroll().hide();
  9. }
  10. })(jQuery);