Плагин NiceScroll JS ожидает загрузки другого JS, пока вы не сможете прокрутить - PullRequest
0 голосов
/ 24 декабря 2018

Я использую плагин NiceScroll JS, чтобы избавиться от полосы прокрутки браузера по умолчанию.Однако плагин, похоже, ожидает загрузки всех других js, пока вы не сможете прокрутить, но я хочу сразу прокрутить ...

Я уже пытался загрузить инициализировать полосу прокрутки без этого заголовка.jQuery(document).ready(function( $ ){ //... });

Вот как код загружается (я использую WP):

wp_register_script('NiceScroll', get_template_directory_uri() . '/js/jquery.nicescroll.min.js', array('jquery'),'3.7.0', true);
wp_enqueue_script('NiceScroll');

wp_register_script('InitNiceScroll', get_template_directory_uri() . '/js/init-nicescroll.js', array('jquery','NiceScroll'),'1.0.0', true);
wp_enqueue_script('InitNiceScroll');

init-nicescroll.js

jQuery("body").niceScroll({
  scrollspeed: 80, // scrolling speed
  mousescrollstep: 60, // scrolling speed with mouse wheel (pixel)
  cursorwidth: "0.22vw", // cursor width in pixel (you can also write "5px")
  cursorborderradius: "1px",
  railpadding: {
    top: 92,
    right: 3,
    left: 3,
    bottom: 15
  }, // set padding for rail bar
  zindex: "1",
  autohidemode: false, // how hide the scrollbar works, possible values:
  scrollbarid: "body_scrollbar",
});

Вы можете увидеть здесь мой живой веб-сайт: https://9n -tech.com / review / huawei-p10

...