* 初始化数据和运行程序
()
| 91 | * 初始化数据和运行程序 |
| 92 | */ |
| 93 | protected init(): void { |
| 94 | this.halfCH = this.canvasHeight / 2 |
| 95 | |
| 96 | // WaveLoading methods |
| 97 | this.setOffsetTop(this.canvasHeight) |
| 98 | this.setCanvasStyle() |
| 99 | |
| 100 | // Wave methods |
| 101 | this.ownResizeEvent() |
| 102 | this.optionsNormalize() |
| 103 | this.loadMaskImage() |
| 104 | this.createDots() |
| 105 | |
| 106 | // WaveLoading resize 事件需要放到 Wave 的后面 |
| 107 | this.waveLoadingResizeEvent() |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * 设置 offsetTop 值 |
nothing calls this directly
no test coverage detected