css+js实现透明泡泡长条生长动画效果代码

代码语言:html

所属分类:动画

代码描述:css+js实现透明泡泡长条生长动画效果代码

代码标签: css js 透明 泡泡 长条 生长 动画

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

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

<head>
 
<meta charset="UTF-8">

 
 
 
<style>
:root{
  /*
  --colA: #e0e0e0;
  --colB: #bebebe;
  --colC: #ffffff;
  */
  --colA: #c0c0cc;
  --colB: #debebe;
  --colC: #fff0f0;
  --colD: #000;
  --colE: transparent;
}

body{
  background: var(--colA);
  margin: 50px;
  text-align: center;
  font-size: 39px;
  color: rgba(255,245,245,0.0);
  font-family: serif;
  overflow-x: hidden;
}

div{
  margin: 30px;
  display: inline-block;
}

.delay{
  animation-delay: 1.5s;
}

.delay2{
  animation-delay: 3s;
}

.pieces{
  width: 100%;
  text-align: c.........完整代码请登录后点击上方下载按钮下载查看

网友评论0