|
@@ -1,9 +1,11 @@
|
|
|
|
|
|
-export default function (strArr) {
|
|
|
+let syAttr = []
|
|
|
+function setShuiyin (strArr) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+ syAttr = strArr
|
|
|
if (window.$('.shuiyincanvas')[0]) {
|
|
|
window.$('.shuiyincanvas')[0].remove()
|
|
|
}
|
|
@@ -15,8 +17,16 @@ export default function (strArr) {
|
|
|
let boxWL = Math.ceil(winW / boxW)
|
|
|
let boxHL = Math.ceil(winH / boxH)
|
|
|
let canvas = window.$('<canvas class="shuiyincanvas"></canvas>')
|
|
|
- let report = window.$('body')
|
|
|
+ let report = window.$('.navbar-logo')
|
|
|
report.append(canvas)
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
canvas.css({
|
|
|
zIndex: '999',
|
|
|
position: 'fixed',
|
|
@@ -52,3 +62,5 @@ function setName (arr, ctx) {
|
|
|
ctx.fillText(e, 0, i * h)
|
|
|
})
|
|
|
}
|
|
|
+
|
|
|
+export default setShuiyin
|