css实现小球钟摆动画效果代码

代码语言:html

所属分类:动画

代码描述:css实现小球钟摆动画效果代码

代码标签: css 小球 钟摆 动画

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


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">
  

  
<style>
*,
*::before,
*::after {
  box-sizing: border-box;
  position: relative;
}
body {
  background: black;
  margin: 0;
}
.base {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 5px solid white;
  margin: auto;
  max-width: 25px;
}
.thread::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1px/2);
  bottom: 25px;
  background: rgba(255, 255, 255, 0.5);
  width: 1px;
}
.thread {
  display: inline-flex;
  align-items: flex-end;
  t.........完整代码请登录后点击上方下载按钮下载查看

网友评论0