css布局实现煤油灯燃烧动画效果代码

代码语言:html

所属分类:动画

代码描述:css布局实现煤油灯燃烧动画效果代码

代码标签: 煤油灯 燃烧 动画 效果

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


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

<head>

  <meta charset="UTF-8">
  

<style>
body {
  background: #1D2A3C;
  height: 100vh;
  overflow: hidden;
  display: flex;
}

div {
  position: absolute;
}

.lanthanum {
  width: 100%;
  height: 100%;
  transform: scaleY(0.5);
}

.hat {
  top: calc(50% - 100px);
  left: 50%;
}
.hat .top {
  top: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  background: #323c46;
  border-radius: 99px;
}
.hat .body {
  top: -30px;
  left: -30px;
  width: 60px;
  height: 80px;
  background: #191e23;
  border-radius: 99px;
}
.hat .brimtop {
  top.........完整代码请登录后点击上方下载按钮下载查看

网友评论0