123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!DOCTYPE html>
- <html>
- <head>
- <link href="../css/perfect-scrollbar.css" rel="stylesheet">
- <script src="../dist/perfect-scrollbar.js"></script>
- <style>
- .container {
- position: relative;
- margin: 30px auto;
- padding: 0px;
- width: 600px;
- height: 400px;
- overflow: auto;
- }
- .container .content {
- background-image: url('./assets/azusa.jpg');
- width: 1280px;
- height: 720px;
- color: blue;
- font-size: 20px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="content">
- wheelSpeed: 0.1
- </div>
- </div>
- <div class="container">
- <div class="content">
- wheelSpeed: 10
- </div>
- </div>
- <script>
- var containers = document.querySelectorAll('.container');
- new PerfectScrollbar(containers[0], {
- wheelSpeed: 0.1
- });
- new PerfectScrollbar(containers[1], {
- wheelSpeed: 10
- });
- </script>
- </body>
- </html>
|