作品原创自cyclegtx
详细教程见作者的github
本人在原作基础上进行修改整合。
html 页面加背景Wave-likeDynamicBackground.js 文件html文件中加入
```html3. 在 `<body>`底部加入 `Wave-likeDynamicBackground.js` 文件
```html
<script type="text/javascript" src="Wave-likeDynamicBackground.js"></script>
如某个<div>元素
Wave-likeDynamicBackground.js 文件<div>设置style样式
```html3. 为`<div>`添加`<canvas>`
```html
<div style="position: relative; width: 500px; height: 500px; border: 1px solid #aaa;">
<canvas id="wdbg" style="position: absolute; top: 0; left: 0; z-index: -100; height: 100%; width: 100%"></canvas> <!--背景-->
</div>
<body>底部加入 Wave-likeDynamicBackground.js 文件
<script type="text/javascript" src="Wave-likeDynamicBackground.js"></script>