Closed
Description
Increasing Access
Unsure
Most appropriate sub-area of p5.js?
- Accessibility
- Color
- Core/Environment/Rendering
- Data
- DOM
- Events
- Image
- IO
- Math
- Typography
- Utilities
- WebGL
- Build Process
- Unit Testing
- Internalization
- Friendly Errors
- Other (specify if possible)
Feature enhancement details
Hi,
this is a really minor improvement. Currently, when a user successfully generated a GIF with saveGif function, p5 shows a message Done. Downloading your gif!πΈ, which stays on the screen forever. It would be nice to remove it after some amount of time.
p.html('Done. Downloading your gif!πΈ');
setTimeout(()=> p.remove(),5000);
Thanks!