()
| 158 | }, 2500); |
| 159 | } |
| 160 | function zoomDefault() { |
| 161 | const htmlZoom = window.localStorage.getItem("htmlZoom"); |
| 162 | if (htmlZoom) { |
| 163 | document.getElementsByTagName("html")[0].style.zoom = htmlZoom; |
| 164 | } |
| 165 | } |
| 166 | function zoomIn() { |
| 167 | zoom((htmlZoom) => `${Math.min(parseInt(htmlZoom) + 10, 200)}%`); |
| 168 | } |