12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html>
- <html>
- <head>
- <link href="../css/perfect-scrollbar.css" rel="stylesheet">
- <script src="../dist/perfect-scrollbar.js"></script>
- <style>
- #container {
- position: relative;
- margin: 0px auto;
- padding: 0px;
- width: 600px;
- height: 400px;
- overflow: auto;
- }
- #container .content {
- background-image: url('./assets/azusa.jpg');
- width: 1280px;
- height: 720px;
- }
- </style>
- <style>
- .ps__rail-x,
- .ps__rail-y {
- opacity: 0.6;
- }
- </style>
- </head>
- <body>
- <div id="container">
- <div class="content">
- </div>
- </div>
- <script>
- new PerfectScrollbar('#container');
- </script>
- </body>
- </html>
|