options-handlers.html 826 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link href="../css/perfect-scrollbar.css" rel="stylesheet">
  5. <script src="../dist/perfect-scrollbar.js"></script>
  6. <style>
  7. #container {
  8. position: relative;
  9. margin: 0px auto;
  10. padding: 0px;
  11. width: 600px;
  12. height: 400px;
  13. overflow: auto;
  14. }
  15. #container .content {
  16. background-image: url('./assets/azusa.jpg');
  17. width: 1280px;
  18. height: 720px;
  19. color: blue;
  20. font-size: 20px;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div id="container">
  26. <div class="content">
  27. No rail/thumb interaction!
  28. </div>
  29. </div>
  30. <script>
  31. var $ = document.querySelector.bind(document);
  32. new PerfectScrollbar('#container', {
  33. handlers: ['keyboard', 'wheel', 'touch']
  34. });
  35. </script>
  36. </body>
  37. </html>