<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <style> :root { --t: 1s; } body { display: flex; justify-content: center; align-items: center; align-content: center; height: 100vh; margin: 0; flex-direction: column; } .loading { width: 200px; height: 200px; display: flex; align-items: center; justify-items: center; animation: animateBackground 10s linear infinite; } .loading div { width: 20px; height: 120px; background-color: lightgreen; margin-left: 10px; animation: load var(--t) ease infinite calc(var(--t) / 5 * var(--i)); } @keyframes load { 0%, 100% { height: 120px; background-color: lightblue; } 50% { height: 50px; background-color: lightgreen; } } </style> <body> <div class="loading"> <div style="--i:0"></div> <div style="--i:1"></div> <div style="--i:2"></div> <div style="--i:3"></div> <div style="--i:4"></div> </div> </body> </html>
人生旅途,边走边看...
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 25岁的心里话
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现