* 设置 offsetTop 值 * @param top 高度值
(top: number)
| 112 | * @param top 高度值 |
| 113 | */ |
| 114 | private setOffsetTop(top: number): void { |
| 115 | const { offsetTop } = this.options |
| 116 | if (Array.isArray(offsetTop)) { |
| 117 | offsetTop.forEach((_item, i, arr) => { |
| 118 | arr[i] = top |
| 119 | }) |
| 120 | } else { |
| 121 | this.options.offsetTop = top |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * 设置画布 CSS 样式 |
no outgoing calls
no test coverage detected