感恩节如何使用 HTML + CSS 绘制火鸡(Turkey)

上效果图!!!!快点学起来!!!
(代码来自 codepen,已附上链接)

在这里插入图片描述

先来一道香喷喷的火鸡吧
在这里插入图片描述

再看萌萌的火鸡跳舞

在这里插入图片描述

<!DOCTYPE html>
<html lang="en">
<!-- https://codepen.io/BlackPug/pen/gDqjx -->
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    body {
    
      background-color: #cc3333;
    }

    .top,
    .bottom {
    
      position: absolute;
      font: 4em Geneva, serif;
    }

    .top {
    
      top: 480px;
      left: 380px;
    }

    .bottom {
    
      top: 540px;
      left: 435px;
    }

    .turkey {
    
      width: 700px;
      height: 700px;
      position: relative;
      margin: 200px 0 0 400px;
    }

    .body {
    
      background-color: #993300;
      width: 400px;
      height: 300px;
      border-radius: 50%;
      position: absolute;
    }

    .right-breast {
    
      background-color: #a93300;
      width: 220px;
      height: 150px;
      border-radius: 50%;
      position: absolute;
      left: 174px;
      top: 30px;
      transform: rotate(30deg);
      -ms-transform: rotate(30deg);
      -webkit-transform: rotate(30deg);
    }

    .left-breast {
    
      background-color: #993300;
      width: 240px;
      height: 150px;
      border-radius: 50%;
      position: absolute;
      left: 155px;
      top: 55px;
      transform: rotate(40deg);
      -ms-transform: rotate(40deg);
      -webkit-transform: rotate(40deg);
    }

    .neck {
    
      background-color: #8A2E00;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      position: absolute;
      top: 180px;
      left: 320px;
    }

    .wing-top {
    
      background-color: #8A2E00;
      width: 160px;
      height: 80px;
      border-radius: 50%;
      position: absolute;
      top: 210px;
      left: 150px;
      transform: rotate(30deg);
      -ms-transform: rotate(30deg);
      -webkit-transform: rotate(30deg);
    }

    .wing-bottom {
    
      background-color: #7C2900;
      width: 130px;
      height: 50px;
      border-radius: 50%;
      position: absolute;
      top: 260px;
      left: 160px;
      transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
    }

    .tail {
    
      background-color: #7C2900;
      width: 90px;
      height: 70px;
      border-radius: 50%;
      position: absolute;
      top: 200px;
      left: 10px;
      transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
      -webkit-transform: rotate(-10deg);
    }

    .drumstick {
    
      background-color: #8A2E00;
      width: 180px;
      height: 160px;
      border-radius: 50%;
      position: absolute;
      top: 15px;
      left: -25px;
      transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
    }

    .back-drumstick {
    
      background-color: #7C2900;
      width: 180px;
      height: 160px;
      border-radius: 50%;
      position: absolute;
      top: -10px;
      left: 50px;
      transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
    }

    .front-bone {
    
      background-color: white;
      width: 50px;
      height: 25px;
      border-radius: 30%;
      position: absolute;
      top: 35px;
      left: -50px;
      transform: rotate(30deg);
      -ms-transform: rotate(30deg);
      -webkit-transform: rotate(30deg);
    }

    .back-bone {
    
      background-color: white;
      width: 40px;
      height: 22px;
      border-radius: 30%;
      position: absolute;
      top: -3px;
      left: 50px;
      transform: rotate(30deg);
      -ms-transform: rotate(30deg);
      -webkit-transform: rotate(30deg);
    }

    .back-left-knob {
    
      background-color: white;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      position: absolute;
      top: -10px;
      left: 26px;
    }

    .back-right-knob {
    
      background-color: white;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      position: absolute;
      top: -30px;
      left: 46px;
    }

    .front-left-knob {
    
      background-color: white;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      position: absolute;
      top: 5px;
      left: -52px;
    }

    .front-right-knob {
    
      background-color: white;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      position: absolute;
      top: 30px;
      left: -68px;
    }

    .plate {
    
      background-color: silver;
      width: 500px;
      height: 150px;
      border-radius: 50%;
      position: absolute;
      top: 390px;
      left: 360px;
    }

    .inner-plate {
    
      background-color: grey;
      width: 440px;
      height: 130px;
      border-radius: 50%;
      position: absolute;
      top: 390px;
      left: 390px;
    }

    .smoke {
    
      opacity: 0.1;
    }

    .line01 {
    
      background-color: white;
      position: absolute;
      height: 50px;
      width: 20px;
      top: 200px;
      left: 510px;
      transform: rotate(40deg);
      -ms-transform: rotate(40deg);
      -webkit-transform: rotate(40deg);
    }

    .line02 {
    
      background-color: white;
      position: absolute;
      height: 50px;
      width: 20px;
      top: 172px;
      left: 510px;
      transform: rotate(-40deg);
      -ms-transform: rotate(40deg);
      -webkit-transform: rotate(40deg);
    }

    .line03 {
    
      background-color: white;
      position: absolute;
      height: 50px;
      width: 20px;
      top: 145px;
      left: 510px;
      transform: rotate(40deg);
      -ms-transform: rotate(40deg);
      -webkit-transform: rotate(40deg);
    }

    .line04 {
    
      background-color: white;
      position: absolute;
      height: 50px;
      width: 20px;
      top: 118px;
      left: 510px;
      transform: rotate(-40deg);
      -ms-transform: rotate(-40deg);
      -webkit-transform: rotate(-40deg);
    }

    .line11 {
    
      background-color: white;
      position: absolute;
      height: 50px;
      width: 20px;
      top: 200px;
      left: 560px;
      transform: rotate(40deg);
      -ms-transform: rotate(40deg);
      -webkit-transform: rotate(40deg);
    }

    .line12 {
    
      background-color: white;
      position: absolute;
      height: 50px;
      width: 20px;
      top: 172px;
      left: 560px;
      transform: rotate(-40deg);
      -ms-transform: rotate(-40deg);
      -webkit-transform: rotate(-40deg);
    }

    .line13 {
    
      background-color: white;
      position: absolute;
      height: 50px;
      width: 20px;
      top: 145px;
      left: 560px;
      transform: rotate(40deg);
      -ms-transform: rotate(40deg);
      -webkit-transform: rotate(40deg);
    }

    .line14 {
    
      background-color: white;
      position: absolute;
      height: 50px;
      width: 20px;
      top: 118px;
      left: 560px;
      transform: rotate(-40deg);
      -ms-transform: rotate(-40deg);
      -webkit-transform: rotate(-40deg);
    }

    .line21 {
    
      background-color: white;
      position: absolute;
      height: 50px;
      width: 20px;
      top: 200px;
      left: 610px;
      transform: rotate(40deg);
      -ms-transform: rotate(40deg);
      -webkit-transform: rotate(40deg);
    }

    .line22 {
    
      background-color: white;
      position: absolute;
      height: 50px;
      width: 20px;
      top: 172px;
      left: 610px;
      transform: rotate(-40deg);
      -ms-transform: rotate(-40deg);
      -webkit-transform: rotate(-40deg);
    }

    .line23 {
    
      background-color: white;
      position: absolute;
      height: 50px;
      width: 20px;
      top: 145px;
      left: 610px;
      transform: rotate(40deg);
      -ms-transform: rotate(40deg);
      -webkit-transform: rotate(40deg);
    }

    .line24 {
    
      background-color: white;
      position: absolute;
      height: 50px;
      width: 20px;
      top: 118px;
      left: 610px;
      transform: rotate(-40deg);
      -ms-transform: rotate(-40deg);
      -webkit-transform: rotate(-40deg);
    }
  </style>
</head>

<body>
  <div class="plate"></div>
  <div class="inner-plate"></div>

  <div class="turkey">
    <div class="back-bone"></div>
    <div class="back-left-knob"></div>
    <div class="back-right-knob"></div>
    <div class="back-drumstick"></div>
    <div class="tail"></div>
    <div class="body"></div>
    <div class="right-breast"></div>
    <div class="neck"></div>
    <div class="left-breast"></div>
    <div class="wing-top"></div>
    <div class="wing-bottom"></div>
    <div class="front-bone"></div>
    <div class="front-left-knob"></div>
    <div class="front-right-knob"></div>
    <div class="drumstick"></div>
  </div>

  <div class="smoke">
    <div class="line01"></div>
    <div class="line02"></div>
    <div class="line03"></div>
    <div class="line04"></div>

    <div class="line11"></div>
    <div class="line12"></div>
    <div class="line13"></div>
    <div class="line14"></div>

    <div class="line21"></div>
    <div class="line22"></div>
    <div class="line23"></div>
    <div class="line24"></div>
  </div>

  <div class="top">Happy</div>
  <div class="bottom">Thanksgiving!</div>
</body>

</html>

================================

<!DOCTYPE html>
<html lang="en">
<!-- https://codepen.io/TWAIN/pen/zowzOE -->
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    body {
    
      background: #6495ed;
    }

    #turkey {
    
      display: block;
      margin: auto;
      margin-top: 50px;
      width: 40%;
      height: 40%;
      animation: moveTurkey 30s ease-in-out infinite;
    }

    #rightpupil,
    #leftpupil {
    
      animation: moveEyes 3s linear infinite;
    }

    #leftfoot {
    
      animation: moveLeft 3s linear infinite;
    }

    #rightfoot {
    
      animation: moveRight 3s linear infinite;
    }

    #message {
    
      display: block;
      margin: auto;
      margin-top: -75px;
    }

    text tspan {
    
      font-family: Helvetica, Arial;
      font-size: 60px;
      fill: #f8de7e;
      font-weight: bold;
      animation: textMotion 2s ease infinite;
    }

    @-webkit-keyframes moveEyes {
    

      from,
      to {
    
        transform: translate(0, 0);
      }

      10%,
      30%,
      50%,
      70%,
      90% {
    
        transform: translate(-1px, 0);
      }

      20%,
      40%,
      60%,
      80% {
    
        transform: translate(8px, 0);
      }
    }

    @-webkit-keyframes moveTurkey {
    

      from,
      to {
    
        transform: translate(0, 0);
      }

      10%,
      30%,
      50%,
      70%,
      90% {
    
        transform: translate(-200px, 0);
      }

      20%,
      40%,
      60%,
      80% {
    
        transform: translate(200px, 0);
      }
    }

    @-webkit-keyframes moveLeft {
    

      from,
      to {
    
        transform: translate(0, 0);
      }

      10%,
      30%,
      50%,
      70%,
      90% {
    
        transform: translate
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值