2013-07-18 00:53:02 +08:00
|
|
|
<!DOCTYPE html>
|
2015-01-27 00:32:33 +08:00
|
|
|
<html>
|
2013-07-18 00:53:02 +08:00
|
|
|
<head>
|
2015-01-27 00:32:33 +08:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
2013-09-30 14:41:09 +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-02-19 00:36:10 +08:00
|
|
|
.contentHolder { position:relative; margin:0px auto; padding:0px; width: 640px; height: 360px; overflow: scroll; }
|
2015-01-27 00:32:33 +08:00
|
|
|
.contentHolder .content { background-image: url('./azusa.jpg'); width: 12800px; height: 7200px; }
|
|
|
|
.spacer { text-align:center }
|
|
|
|
</style>
|
2013-07-18 00:53:02 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1 style="text-align:center">No minimum</h1>
|
|
|
|
<div id="Default" class="contentHolder">
|
|
|
|
<div class="content">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<h1 style="text-align:center">100px minimum</h1>
|
|
|
|
<div id="LongThumb" class="contentHolder">
|
|
|
|
<div class="content">
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-01-27 00:32:33 +08:00
|
|
|
<script>
|
|
|
|
var $ = document.querySelector.bind(document);
|
|
|
|
window.onload = function () {
|
|
|
|
Ps.initialize($('#Default'));
|
|
|
|
Ps.initialize($('#LongThumb'), {minScrollbarLength: 100});
|
|
|
|
};
|
|
|
|
</script>
|
2013-07-18 00:53:02 +08:00
|
|
|
</body>
|
|
|
|
</html>
|