同质梯度加载动画效果
代码语言:html
所属分类:加载滚动
代码描述:同质梯度加载动画效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> * { margin: 0; padding: 0; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background: #240229; } .loader { position: relative; width: 200px; height: 200px; border: 4px solid #240229; overflow: hidden; border-radius: 50%; box-shadow: -5px -5px 5px rgba(255, 255, 255, 0.1), 10px 10px 10px rgba(0, 0, 0, 0.4), inset -5px -5px 5px rgba(255, 255, 255, 0.2), inset 10px 10px 10px rgba(0, 0, 0, 0.4); } .loader:before { content: ""; position: absolute; top: 25px; left: 25px; right: 25px; bottom: .........完整代码请登录后点击上方下载按钮下载查看
网友评论0