Created
November 26, 2025 12:43
-
-
Save avinashselvam/bc2bf089bcfd379d66b590717ed5c526 to your computer and use it in GitHub Desktop.
Reve Loading Animation
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width,initial-scale=1" /> | |
| <title>Animated White Noise</title> | |
| <style> | |
| body { | |
| overflow: hidden; | |
| margin: 0; | |
| } | |
| @property --p1 { | |
| syntax: "<percentage>"; | |
| inherits: false; | |
| initial-value: 75%; | |
| } | |
| .noise { | |
| height: 100vh; | |
| background: | |
| radial-gradient( | |
| at calc(3 * var(--p1)) calc(20% + 0.5 * var(--p1)), | |
| cornflowerblue 0px, | |
| transparent 70% | |
| ), | |
| radial-gradient( | |
| at calc(31% + 0.1 * var(--p1)) calc(70% + 2 * var(--p1)), | |
| blue 0px, | |
| transparent 80% | |
| ), | |
| radial-gradient( | |
| at calc(4% + 2 * var(--p1)) calc(14% + 3 * var(--p1)), | |
| cyan 0px, | |
| transparent 50% | |
| ), | |
| deepskyblue; | |
| animation: mix 2s ease-in-out infinite alternate; | |
| } | |
| @keyframes mix { | |
| 0% { | |
| --p1: 0%; | |
| } | |
| 100% { | |
| --p1: 100%; | |
| } | |
| } | |
| .noise:before { | |
| content: ""; | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| background: url("noise.svg"); | |
| mix-blend-mode: overlay; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="noise" aria-hidden="true"></div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment