Add new HTML templates for various visual effects - #2
Merged
Conversation
Add animated wallpaper templates (Matrix, Digital Clock, Doom Fire, Aurora, Starfield, Particles)
There was a problem hiding this comment.
Pull request overview
Adds six new self-contained HTML templates under templates/ demonstrating animated visual effects (Canvas/JS) and a styled digital clock, intended for use as interactive wallpapers.
Changes:
- Introduces multiple Canvas-based animation demos (aurora waves, particle network, starfield, Matrix rain, Doom fire).
- Adds a styled digital clock template with date display.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 8 comments.
Show a summary per file
| File | Description |
|---|---|
| templates/aurora-waves.html | New Canvas animation rendering layered sine-wave “aurora” lines. |
| templates/particles-network.html | New particle simulation with proximity line connections. |
| templates/starfield.html | New starfield/warp-style perspective animation. |
| templates/doom-fire.html | New implementation of the classic Doom fire effect using a palette and pixel propagation. |
| templates/matrix-rain.html | New Matrix-style falling characters animation. |
| templates/digital-clock.html | New centered digital clock UI with glow styling and date formatting. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces six new HTML templates, each showcasing a different animated visual effect using JavaScript and the HTML5 Canvas API. These templates are self-contained and demonstrate various animation techniques, including particle systems, procedural graphics, and real-time effects.
New Animated Visual Templates:
Procedural and Particle Effects:
aurora-waves.html, which renders animated aurora-like waves using layered sine functions and smooth color gradients.particles-network.html, featuring a dynamic network of moving particles connected by lines when close together, creating a web-like effect.starfield.html, implementing a 3D starfield simulation where stars move toward the viewer, mimicking a space warp effect.Classic and Iconic Visualizations:
doom-fire.html, a recreation of the classic "Doom Fire" algorithm, generating animated fire using a color palette and pixel propagation.matrix-rain.html, which displays falling "Matrix" code rain with randomized characters and glowing green trails.Utility and UI Effects:
digital-clock.html, a visually styled digital clock with a glowing effect, updating every second and displaying the current date.