特效 源码 index.html <!DOCTYPE html> <html> <head> <title>Glowing Gradient Loading Animation</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="loader"></div> </body> </html> css * { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background: #000; } .loader { position: relative; width: 300px; height: 10px; background: #fff; -webkit-box-reflect: below 1px linear-gradient(transparent,#0005); } .loader::before { content: ''; position: absolute; inset: 0; back