点状铺砖动画效果

代码语言:html

所属分类:动画

代码描述:点状铺砖动画效果

代码标签: 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
body {
  margin: 0;
  padding: 0;
  background: #212121;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.circle {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.circle:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  box-shadow: 0 0 0 10px #343434, 0 0 0 20px #3b3b3b, 0 0 0 30px #484848, 0 0 0 40px #5a5a5a, 0 0 0 50px #343434, inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.dots {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  animation: animate 10s linear infinite;
}

.dots:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
.........完整代码请登录后点击上方下载按钮下载查看

网友评论0