div+css小球平衡动画效果代码

代码语言:html

所属分类:动画

代码描述:div+css小球平衡动画效果代码

代码标签: div css 小球 平衡 动画

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

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum=1.0,minimum=1.0,user-scalable=0" />
<style>
body{
    background: black;
    padding: 100px;
}
.ball {
  position: relative;
  bottom: 50px;

  left: calc(100% - 20px);
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  animation: ball-move8234 3s ease-in-out 1s infinite alternate;
}

.ball::after {
  position: absolute;
  content: '';
  top: 25px;
  right: 5px;
  width: 5px;
  height: 5px;
  background: #000;
  bor.........完整代码请登录后点击上方下载按钮下载查看

网友评论0