| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!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>
- 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; }
- </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>
- </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>
- <script>
- window.onload = function () {
- [].forEach.call(document.querySelectorAll('.container'), function (el) {
- Ps.initialize(el);
- });
- };
- </script>
- </body>
- </html>
|