2014-12-02 19:34:45 +08:00
|
|
|
<!DOCTYPE html>
|
2015-01-27 00:32:33 +08:00
|
|
|
<html>
|
2014-12-02 19:34:45 +08:00
|
|
|
<head>
|
2015-01-27 00:32:33 +08:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
2014-12-02 19:34:45 +08:00
|
|
|
<title>perfect-scrollbar example</title>
|
2015-02-13 03:56:27 +08:00
|
|
|
<link href="../dist/css/perfect-scrollbar.css" rel="stylesheet">
|
2015-02-13 04:08:09 +08:00
|
|
|
<script src="../dist/js/perfect-scrollbar.js"></script>
|
2015-01-27 00:32:33 +08:00
|
|
|
<style>
|
2015-04-10 23:04:08 +08:00
|
|
|
h1 { text-align: center; }
|
|
|
|
.container { position:relative; margin:0px auto; padding:0px; width: 600px; height: 400px; overflow: auto; }
|
|
|
|
.container .content { background-image: url('./azusa.jpg'); width: 1280px; height: 720px; }
|
2014-12-02 19:34:45 +08:00
|
|
|
|
2015-04-10 23:04:08 +08:00
|
|
|
.large-margin .ps-scrollbar-x-rail {
|
|
|
|
margin: 0 25%;
|
|
|
|
opacity: 0.5;
|
|
|
|
background-color: #eee;
|
2015-01-27 00:32:33 +08:00
|
|
|
}
|
2015-04-10 23:04:08 +08:00
|
|
|
.large-margin .ps-scrollbar-y-rail {
|
|
|
|
margin: 100px 0;
|
|
|
|
opacity: 0.5;
|
|
|
|
background-color: #eee;
|
2015-01-27 00:32:33 +08:00
|
|
|
}
|
|
|
|
</style>
|
2014-12-02 19:34:45 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
2015-04-10 23:04:08 +08:00
|
|
|
<h1>Default</h1>
|
|
|
|
<div class="container">
|
|
|
|
<div class="content">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h1>Margins</h1>
|
|
|
|
<div class="container large-margin">
|
2014-12-02 19:34:45 +08:00
|
|
|
<div class="content">
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-01-27 00:32:33 +08:00
|
|
|
<script>
|
|
|
|
window.onload = function () {
|
2015-04-10 23:04:08 +08:00
|
|
|
[].forEach.call(document.querySelectorAll('.container'), function (el) {
|
|
|
|
Ps.initialize(el);
|
|
|
|
});
|
2015-01-27 00:32:33 +08:00
|
|
|
};
|
|
|
|
</script>
|
2014-12-02 19:34:45 +08:00
|
|
|
</body>
|
|
|
|
</html>
|