为什么NiceScroll不显示在Modal上

时间:2019-02-07 03:16:09

标签: javascript jquery html nicescroll

我遵循了一个指南,该指南允许NiceScroll在模式上显示,但是不会触发。这是帮助您的代码。

invalid process
$("html").niceScroll({horizrailenabled:false});
$("html").css({"overflow-x":"hidden"});
$("html").niceScroll(); 
$(".modal-open").niceScroll();

var bModalBody = bModal.find('.modal-body');

$('.modal').on('shown.bs.modal', function(e){	
  bModalBody.niceScroll({cursorcolor: "#ff0000"});
})
$('.modal').on('hide.bs.modal', function(e){	
  bModalBody.niceScroll().remove();
});
.modal-content {
    background-color:rgba(0, 0, 0, 0.6);
}
.modal-header, .modal-footer {
    border: 0!important;
}
.modal-open .modal {
    overflow-x: hidden;
}
 

这样做的目的是使模式的溢出也成为NiceScroll,-webkit-scrollbar在设计以及我希望网站的外观方面不是最佳的滚动条。我希望有人回答这个问题,因为我发现我找到的工作和我的提琴和指南都没有。很奇怪。

0 个答案:

没有答案