always-visible.html 726 B

12345678910111213141516171819202122232425262728293031323334353637
  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. }
  20. </style>
  21. <style>
  22. .ps__rail-x,
  23. .ps__rail-y {
  24. opacity: 0.6;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div id="container">
  30. <div class="content">
  31. </div>
  32. </div>
  33. <script>
  34. new PerfectScrollbar('#container');
  35. </script>
  36. </body>
  37. </html>