()
| 305 | } |
| 306 | |
| 307 | function saveImage(){ |
| 308 | const link = document.createElement('a'); |
| 309 | link.href = animation.toDataURL(); |
| 310 | |
| 311 | const date = new Date(); |
| 312 | const filename = `shimmer_${date.toLocaleDateString()}_${date.toLocaleTimeString()}.png`; |
| 313 | link.download = filename; |
| 314 | link.click(); |
| 315 | } |
| 316 | |
| 317 | //shortcut hotkey presses |
| 318 | document.addEventListener('keydown', function(event) { |