| 12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8">
- <title>perfect-scrollbar example</title>
- <link href="../dist/css/perfect-scrollbar.css" rel="stylesheet">
- <script src="../dist/js/perfect-scrollbar.js"></script>
- <style>
- .contentHolder { position:relative; margin:0px auto; padding:0px; width: 600px; height: 400px; overflow: auto; }
- .contentHolder .content { background-image: url('./azusa.jpg'); width: 1280px; height: 720px; }
- .spacer { text-align:center }
- /* Change the alignment of scrollbars */
- /* Recommended: You can just modify the CSS file directly. */
- .ps-container .ps-scrollbar-x-rail {
- top: 3px;
- bottom: auto; /* If using `top`, there shouldn't be a `bottom`. */
- }
- .ps-container .ps-scrollbar-y-rail {
- left: 3px;
- right: auto; /* If using `left`, there shouldn't be a `right`. */
- }
- </style>
- </head>
- <body>
- <div id="Default" class="contentHolder">
- <div class="content">
- </div>
- </div>
- <script>
- var $ = document.querySelector.bind(document);
- window.onload = function () {
- Ps.initialize($('#Default'));
- };
- </script>
- </body>
- </html>
|