我正在使用http://manos.malihu.gr/jquery-custom-content-scroller/中的自定义内容滚动条。这是我的问题:
集成滚动条后,使用情况有问题。当我用鼠标拖动滚动条时,拖动完成后整个内容消失了。在整个下拉菜单的内容仍然有效之前。
如何让下拉菜单保持活动状态?超时?覆盖?
编辑: 我在标题中包含了自定义内容滚动条:
<link rel="stylesheet" type="text/css"
href="/templates/EvoOriginal/themes/evo/jquery.mCustomScrollbar.css" />
<script type="text/javascript" src="/templates/EvoOriginal/js/jquery.mCustomScrollbar.concat.min.js"></script>
JQuery已经包含在内。
在我的页脚中,我添加了脚本来自定义我的下拉菜单
<script>
(function($){
$(window).on("load",function(){
$(".dropdown-menu, .Dropdown, .nav-panel .nav .nav").mCustomScrollbar({
theme:"dark-2",
scrollButtons:{
enable:true
}});
});
})(jQuery);
</script>
在此之后出现问题。
提前致谢。