div+css实现彩色中性渐变圆圈loading加载动画效果代码

代码语言:html

所属分类:加载滚动

代码描述:div+css实现彩色中性渐变圆圈loading加载动画效果代码

代码标签: div css 彩色 中性 渐变 圆圈l oading 加载

下面为部分代码预览,完整代码请点击下载或在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;
  height: 100vh;
  background: #240229;
}

.loader {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #240229;
  overflow: hidden;
  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: 25.........完整代码请登录后点击上方下载按钮下载查看

网友评论0