* 显示加载动画
()
| 28 | * 显示加载动画 |
| 29 | */ |
| 30 | function showLoadingAnimation() { |
| 31 | console.log('显示加载动画'); |
| 32 | const overlay = document.getElementById('loadingOverlay'); |
| 33 | if (overlay) { |
| 34 | overlay.classList.remove('hide'); |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * 隐藏加载动画 |
no test coverage detected