NiceScroll JS插件等待其他JS加载,直到您可以滚动

时间:2018-12-24 13:11:16

标签: javascript performance nicescroll

我正在使用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",
});

您可以在此处看到我的实时Webseite:https://9n-tech.com/review/huawei-p10

0 个答案:

没有答案