纯css实现稻草人跳动动画效果

代码语言:html

所属分类:动画

代码描述:纯css实现稻草人跳动动画效果

代码标签: 稻草人 跳动 动画 效果

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

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

<style>
body {
  background-color: #c8dffd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.turnip {
  position: relative;
  animation: hop 0.2s ease-in alternate infinite;
}
.turnip__hat {
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-top: 45px solid #515559;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  width: 55px;
  margin: 0 auto -3px;
  z-index: 1;
}
.turnip__hat:before {
  content: "";
  position: absolute;
  top: -87px;
  right: -23px;
  background-color: #515559;
  width: 9px;
  height: 55px;
  border-radius: 100%;
  transform: rotate(50deg);
}
.turnip__hat:after {
  content: "";
  position: absolute;
  top: 12px;
  left: -15px;
  background-color: #515559;
  width: 85px;
  height: 10px;
  border-radius: 40% 40% 70% 70%;
}
.turnip__ribbon {
  width: 55px;
  height: 12px;
  background-color: #d996b5;
  margin: 0 auto;
}
.turnip__head {
  position: relative;
  background-color: #f2f2f2;
  width: 70px;
  height: 55px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  justify-content: space-around;
  flex-flow: row wrap;
}
.turnip__eye {
  width: 6px;
  height: 6px;
  background-color: #000;
  border-radius: 50%;
  margin: 20px 5px 0;
}
.turnip__mouth {
  width: 45px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
}
.turnip__pipe {
  position: absolute;
  top: 40px;
  left: 60px;
  width: 40px;
  height: 2px;
  background-color: #8c8070;.........完整代码请登录后点击上方下载按钮下载查看

网友评论0