scroll.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <html lang="en">
  2. <head>
  3. <meta charset="UTF-8">
  4. <title>Title</title>
  5. <link href="../scroll/css/scrollBar.css" rel="stylesheet" type="text/css">
  6. <link href="../scroll/css/commen.css" rel="stylesheet" type="text/css">
  7. </head>
  8. <body>
  9. <div class="scrollBox" id="box1" paddingr="10px" paddingb="10px" style="padding-right: 15px; padding-bottom: 10px; overflow: hidden; position: relative;">
  10. <div class="zl-scrollContentDiv">
  11. <div class="contentBox1">
  12. </div>
  13. </div>
  14. <div class="zl-scrollBarBox" style="height:100%;top:0;width:5px;right:0;">
  15. <div class="zl-scrollBar zl-verticalBar" style="width: 5px; border-radius: 2.5px; height: 38.7433px;"></div>
  16. </div>
  17. </div>
  18. <script src="http://www.jq22.com/jquery/jquery-1.10.2.js"></script>
  19. <script src="https://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>
  20. <script src="../scroll/js/scrollBar.js"></script>
  21. <script>
  22. $(function() {
  23. $(".scrollBox").scrollBar();
  24. })
  25. </script>
  26. </body>
  27. </html>