音频波动音波动画效果

代码语言:html

所属分类:动画

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

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

<style>
  .container {
  height: 100vh;
  background: linear-gradient(to right, #6a3093, #a044ff);
  display: grid;
  place-items: center;
}
.container .bars {
  width: 300px;
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.container .bars .bar {
  height: 100%;
  width: 9%;
}
@-moz-keyframes sound {
  0% {
    opacity: 0.35;
    background: #f3f3f3;
    height: 1px;
  }
  100% {
    opacity: 1;
    background: #fff;
    height: 100%;
  }
}
@-webkit-keyframes sound {
  0% {
    opacity: 0.35;
    background: #f3f3f3;
    height: 1px;
  }
  100% {
    opacity: 1;
    background: #fff;
    height: 100%;
  }
}
@-o-keyframes sound {
  0% {
    opacity: 0.35;
    background: #f3f3f3;
    height: 1px;
  }
  100% {
    opacity: 1;
    background: #fff;
    height: 100%;
  }
}
@keyframes sound {
  0% {
    opacity: 0.35;
    background: #f3f3f3;
    height: 1px;
  }
  100% {
    opacity: 1;
    background: #.........完整代码请登录后点击上方下载按钮下载查看

网友评论0