赵走x博客
网站访问量:151533
首页
书籍
软件
工具
古诗词
搜索
登录
旋转方块
云下雨css动画
时钟加载器
云下雨css动画
资源编号:552095
热度:106
云下雨css动画
# 源码 ### HTML源码 ```
``` ### CSS源码 ``` .main{ background: #448ced; width:300px; height:300px; text-align:center; } .loader { position: relative; top:50%; left:35%; width: 110px; height: 30px; background: #fff; border-radius: 100px #fff; } .loader::before { content: ''; position: absolute; top: -20px; left: 10px; width: 30px; height: 30px; background: #fff; border-radius: 50%; box-shadow: 40px 0 0 20px #fff; } .snow { position: relative; display: flex; z-index: 1; } .snow span { position: relative; width: 3px; height: 3px; background: #fff; margin: 0 2px; border-radius: 50%; animation: snowing 5s linear infinite; animation-duration: calc(15s / var(--i)); transform-origin: bottom; } @keyframes snowing { 0% { transform: translateY(0px); } 70% { transform: translateY(100px) scale(1); } 100% { transform: translateY(100px) scale(0); } } ```
展示效果