css3 动画 -- 加载动画 Loader
1.html
1 2 3 4 5 6 7 8 9 10 11 12 | <! DOCTYPE html> < html lang="en"> < head > < meta charset="UTF-8" /> < meta name="viewport" content="width=device-width, initial-scale=1.0" /> < title >Document</ title > < link rel="stylesheet" href="style.css" /> </ head > < body > < div class="loader"></ div > </ body > </ html > |
2.css
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | * { margin : 0 ; padding : 0 ; box-sizing: border-box; } body { display : flex; justify- content : center ; align-items: center ; min-height : 100 vh; background : #000 ; } .loader { position : absolute ; width : 150px ; height : 150px ; border-radius: 50% ; background : linear-gradient( 45 deg, transparent , transparent 40% , #e5f403 ); animation: animate 2 s linear infinite; } @keyframes animate { 0% { transform: rotate( 0 deg); filter: hue-rotate( 0 deg); } 100% { transform: rotate( 360 deg); filter: hue-rotate( 360 deg); } } .loader::before { content : "" ; position : absolute ; top : 6px ; left : 6px ; right : 6px ; bottom : 6px ; background : #000 ; border-radius: 50% ; z-index : 1000 ; } .loader::after { content : "" ; position : absolute ; top : 0px ; left : 0px ; right : 0px ; bottom : 0px ; background : linear-gradient( 45 deg, transparent , transparent 40% , #e5f403 ); border-radius: 50% ; z-index : 1 ; filter: blur( 30px ); } |
3.效果图
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步