官网:
http://manos.malihu.gr/jquery-custom-content-scroller/
用法
引入插件的css js 。在容器标签,写上规定clss. 然后js方法初始化一下。
注意点: 页面中,如果出现postion等定位样式,可以会影响插件的 百分布局的样式,造成奇怪的页面。
完整代码如下:demo
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./jquery.mCustomScrollbar-3.0.9.css">
<script src="./jquery-1.8.3.min.js"></script>
<script src="./jquery.mCustomScrollbar-3.0.9.js"></script>
<style>
ul {
border: 1px black solid;
height: 300px;
}
li {
width: 300px;
height: 50px;
background: pink;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div>
<ul id="ul" class="mCustomScrollbar" data-mcs-theme="dark">
<li></li>
<li></li>
<li></li>
**********
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</body>
<script>
$("#ul").mCustomScrollbar({
theme: "menu-list"
});
</script>
</html>