2014-11-11 22:40:03 +08:00
|
|
|
<!DOCTYPE html>
|
2015-01-27 00:32:33 +08:00
|
|
|
<html>
|
2014-11-11 22:40:03 +08:00
|
|
|
<head>
|
2015-01-27 00:32:33 +08:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
2014-11-11 22:40:03 +08:00
|
|
|
<title>perfect-scrollbar example</title>
|
2015-01-27 00:32:33 +08:00
|
|
|
<link href="../out/css/perfect-scrollbar.css" rel="stylesheet">
|
|
|
|
<script src="../out/js/perfect-scrollbar.global.js"></script>
|
|
|
|
<style>
|
|
|
|
h1 { text-align: center; }
|
|
|
|
.container { position:relative; margin:0px auto; padding:0px; width: 600px; height: 400px; overflow: hidden; }
|
|
|
|
.container .content { background-image: url('./azusa.jpg'); width: 1280px; height: 720px; }
|
|
|
|
</style>
|
|
|
|
<style>
|
|
|
|
/* to make scrollbars always visible */
|
|
|
|
.always-visible.ps-container > .ps-scrollbar-x-rail,
|
|
|
|
.always-visible.ps-container > .ps-scrollbar-y-rail {
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
</style>
|
2014-11-11 22:40:03 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Default</h1>
|
|
|
|
<div class="container">
|
|
|
|
<div class="content">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h1>Always visible</h1>
|
|
|
|
<div class="container always-visible">
|
|
|
|
<div class="content">
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-01-27 00:32:33 +08:00
|
|
|
<script>
|
|
|
|
window.onload = function () {
|
|
|
|
[].forEach.call(document.querySelectorAll('.container'), function (el) {
|
|
|
|
Ps.initialize(el);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
</script>
|
2014-11-11 22:40:03 +08:00
|
|
|
</body>
|
|
|
|
</html>
|