markdown CSS绘图:Box Cat

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown CSS绘图:Box Cat相关的知识,希望对你有一定的参考价值。

/* fixes box size issue */
* {
  box-sizing: border-box;
}


h1 {
  text-align: right;
  font-size: 2.3em;
  margin: 0;
  padding: .5em;
  font-family: 'Indie Flower', cursive;
}

.container {
  height: 100vh; /* fills viewport height 100% */
  /* gradient used as 50 50 background */
  background: linear-gradient(to bottom, #D2EAF3 0%, #D2EAF3 50%, #F1D4BC 50%, #F1D4BC 100%);
}

.cat-container {
  width: 150px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cat {
  position: relative;
  width: 150px;
  height: 150px;
  background: #E7E8E8;
  border: 2px solid #000;
}

.ear {
  position: absolute;
  top: -20px;
  width: 40px;
  height: 40px;
  background: #E7E8E8;
  border: 2px solid #000;
  transform: rotate(45deg);
}
.ear.left {
  left: 9px;
}
.ear.right {
  right: 9px;
}
.inner-ear {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  background: #AC8E8D;
  top: 9px;
  left: 9px;
}

.eye {
  position: absolute;
  background: #fff;
  border: 2px solid #000;
  width: 30px;
  height: 30px;
}
.eye.left {
  top: 25px;
  left: 25px;
}
.eye.right {
  top: 25px;
  right: 25px;
}

.pupil {
  position: absolute;
  top: 9px;
  left: 8px;
  width: 10px;
  height: 10px;
  background: #000;
  animation: eyeMovement 8s infinite;
  animation-timing-function: ease-in-out;
}

.paw {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #000;
  bottom: 0;
  background: #fff;
}
.paw.left {
  left: 10px;
  animation: paw1 4s infinite;
  animation-timing-function: ease-in-out;
}
.paw.right {
  right: 10px;
  animation: paw2 5s infinite;
  animation-timing-function: ease-in-out;
}


.nose {
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #000;
  background: #AC8E8D;
  width: 15px;
  height: 15px;
}

.vertical-line {
  position: absolute;
  width: 2px;
  height: 18px;
  background: #000;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}


.tail {
  position: absolute;
  width: 100px;
  height: 30px;
  background: #E7E8E8;
  border: 2px solid #000;
  right: -90px;
  bottom: 0;
}
.tail-tip {
  position: absolute;
  right: 0;
  height: 100%;
  width: 25px;
  border-left: 2px solid #000;
  background: #fff;
}


@keyframes paw1 {
  0% {
    bottom: 0px;
  }
  10% {
    bottom: 3px;
  }
  25% {
    bottom: 0;
  }
  100% {
    bottom: 0px;
  }
}

@keyframes paw2 {
  0% {
    bottom: 0px;
  }
  50% {
    bottom: 0;
  }
  60% {
    bottom: 3px;
  }
  75% {
    bottom: 0;
  }
  100% {
    bottom: 0px;
  }
}

@keyframes eyeMovement {
  0% {
    top: 9px;
    left: 8px;
  }
  20% {
    top: 9px;
    left: 8px;
  }
  25% {
    top: 12px;
    left: 12px;
  }
  40% {
    top: 12px;
    left: 12px;
  }
  50% {
    top: 12px;
    left: 5px;
  }
  65% {
    top: 12px;
    left: 5px;
  }
  70% {
    top: 6px;
    left: 5px;
  }
  85% {
    top: 6px;
    left: 5px;
  }
  90% {
    top: 9px;
    left: 8px;
  }
  100% {
    top: 9px;
    left: 8px;
  }
}
<!-- container with gradient and default positioning -->
<div class="container">

  <!-- Google Font -->
  <h1>A Cute Box Cat</h1>

  <!-- main container we use to position our cat -->
  <div class="cat-container">

    <!-- ears -->
    <div class="ear left">
      <div class="inner-ear">
      </div>
    </div>
    <div class="ear right">
      <div class="inner-ear">
      </div>
    </div>

    <!-- tail and tip -->
    <div class="tail">
      <div class="tail-tip"></div>
    </div>

    <!-- main cat body -->
    <div class="cat">

      <!-- eyes -->
      <div class="eye left">
        <div class="pupil"></div>
      </div>
      <div class="eye right">
        <div class="pupil"></div>
      </div>

      <!-- nose and line under nose -->
      <div class="nose"></div>
      <div class="vertical-line"></div>

      <!-- paws -->
      <div class="paw left"></div>
      <div class="paw right"></div>

    </div>
    <!-- .cat -->

  </div>
  <!-- .cat-container -->

</div>
<!-- .container -->
CSS Drawing: Box Cat
--------------------
http://codecatemy.com/

A [Pen](https://codepen.io/Onomicon/pen/JJjLeO) by [Onomicon](https://codepen.io/Onomicon) on [CodePen](https://codepen.io).

[License](https://codepen.io/Onomicon/pen/JJjLeO/license).

以上是关于markdown CSS绘图:Box Cat的主要内容,如果未能解决你的问题,请参考以下文章

markdown HTML&css_layout_1-2_box_side由端

CSS进阶box-shadow 与 filter:drop-shadow 详解及奇技淫巧

详解及奇技淫巧 抄的

markdown 蟒蛇中使用matplotlib的绘图功能

markdown R绘图

在 R markdown 中嵌入绘图输出