index.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <!-- <link rel="stylesheet" type="text/css" href="css/htmleaf-demo.css">&lt;!&ndash;演示页面样式,使用时可以不引用&ndash;&gt;-->
  8. <!-- <style>-->
  9. <!-- .wrap{-->
  10. <!-- font-family: Roboto;-->
  11. <!-- text-align: center;-->
  12. <!-- }-->
  13. <!-- .tank{-->
  14. <!-- margin:0 50px;-->
  15. <!-- display: inline-block;-->
  16. <!-- }-->
  17. <!-- </style>-->
  18. </head>
  19. <body>
  20. <div class="tank waterTankHere1"></div>
  21. <!-- <link rel="stylesheet" type="text/css" href="css/normalize.css" />&lt;!&ndash;CSS RESET&ndash;&gt;-->
  22. <script src="http://192.168.1.70:8500/static/panel/jquery.min.js" type="text/javascript"></script>
  23. <script src="js/waterTank.js"></script>
  24. <script>
  25. $('.waterTankHere1').waterTank({
  26. width: 420,
  27. height: 360,
  28. color: 'skyblue',
  29. level: 83
  30. })
  31. $('.waterTankHere1').waterTank(Math.floor(Math.random() * 100) + 0 );
  32. </script>
  33. </body>
  34. </html>