| 1234567891011121314151617181920212223242526272829303132333435363738 | <!DOCTYPE html><html lang="zh"><head>	<meta charset="UTF-8">	<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 	<meta name="viewport" content="width=device-width, initial-scale=1.0"><!--	<link rel="stylesheet" type="text/css" href="css/htmleaf-demo.css"><!–演示页面样式,使用时可以不引用–>--><!--	<style>--><!--	.wrap{--><!--		font-family: Roboto;--><!--		text-align: center;--><!--	}--><!--	.tank{--><!--		margin:0 50px;--><!--		display: inline-block;--><!--	}--><!--	</style>--></head><body>	<div class="tank waterTankHere1"></div><!--	<link rel="stylesheet" type="text/css" href="css/normalize.css" /><!–CSS RESET–>-->	<script src="http://192.168.1.70:8500/static/panel/jquery.min.js" type="text/javascript"></script>	<script src="js/waterTank.js"></script>	<script>		$('.waterTankHere1').waterTank({			width: 420,			height: 360,			color: 'skyblue',			level: 83		})		$('.waterTankHere1').waterTank(Math.floor(Math.random() * 100) + 0 );	</script></body></html>
 |