jquery.nicescroll 美化滚动条

GitHub

https://github.com/immissile/jquery.nicescroll

 

<!--jquery.nicescroll-->  
<script src="js/jquery.nicescroll/jquery.nicescroll.js"  type="text/javascript"></script>  
  
var nicesx = $("div[id^='drop-down-ul-']").niceScroll({  
                touchbehavior:false,  
                cursorcolor:"#3FA7CB",  
                cursoropacitymax:1.6,  
                cursorwidth:8,  
                horizrailenabled:false,  
                cursorborderradius:0,  
                autohidemode:false  
                });  
        //防止拉动事不触发document的click,也就是不冒泡  
        $("div[id^='ascrail']").bind("click",function(e){  
            var ev=e||event;  
            ev.stopPropagation();  
            return false;  
        });  

代码转载自:http://javaeedevelop.iteye.com/blog/1678491

posted @ 2014-09-02 16:58  linyongqin  阅读(303)  评论(0)    收藏  举报