赵走x博客
网站访问量:151511
首页
书籍
软件
工具
古诗词
搜索
登录
旋转方块
云下雨css动画
时钟加载器
时钟加载器
资源编号:552097
热度:106
时钟加载器
# 源码 ### HTML源码 ```
``` ### CSS源码 ``` .main{ background:#448ced; width:300px; height:300px; } .loader { position: relative; top:45%; left:45%; transform: scale(2); border-radius: 50%; border: 1px solid; width: 30px; height: 30px; color: white; } .loader::after { position: absolute; width: 0px; height: 10px; display: block; border-left: 1px solid #fff; content: ''; left: 14px; border-radius: 1px; top: 4px; animation-duration: 1s; } .loader::before { position: absolute; width: 0px; height: 10px; display: block; border-left: 1px solid #fff; content: ''; left: 14px; border-radius: 1px; top: 4px; animation-duration: 40s; } .loader::before, .loader::after { transform-origin: bottom; animation-name: dial; animation-iteration-count: infinite; animation-timing-function: linear; } @keyframes dial { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } ```
展示效果