Skip to main content

Crab animation

HTML CODE:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Crab CSS Animation</title>
    <!-- Stylesheet -->
    <link rel="stylesheet" href="css/crab.css" />
  </head>
  <body>
    <div class="container">
      <div class="crab">
        <div class="hand">
          <div class="claw-1-l"></div>
          <div class="claw-1-r"></div>
          <div class="claw-2-l"></div>
          <div class="claw-2-r"></div>
        </div>
        <div class="mouth"></div>
        <div class="legs-1"></div>
        <div class="legs-2"></div>
        <div class="eyes"></div>
      </div>
    </div>
  </body>
</html>


CSS CODE:

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #6DA7CC;
}
.container {
  height: 31.25em;
  width: 31.25em;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.crab {
  height: 6.25em;
  width: 12.5em;
  background-color: #e41b23;
  border-radius: 0 0 5em 5em;
  box-shadow: -0.62em 0.31em 0 0.31em #b5151b;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  animation: move 3s infinite;
}
@keyframes move {
  50% {
    left: 3.12em;
  }
}
.hand {
  height: 6.25em;
  width: 16.25em;
  border: 0.62em solid #99151b;
  position: absolute;
  left: -2.5em;
  bottom: 3.12em;
  z-index: -1;
  border-radius: 0 0 9.37em 9.37em;
  border-top: none;
}
.claw-1-l,
.claw-2-l {
  content: "";
  position: absolute;
  height: 3.75em;
  width: 1.87em;
  background-color: #e41b23;
  border-radius: 3.75em 0 0 3.75em;
  bottom: 5.31em;
  transform-origin: 50% 100%;
  animation: claw-1-l 2s infinite;
}
.claw-1-l {
  left: -2.18em;
}
.claw-2-l {
  left: 13.43em;
}
@keyframes claw-1-l {
  50% {
    transform: rotate(-15deg);
  }
}
.claw-1-r,
.claw-2-r {
  content: "";
  position: absolute;
  height: 3.75em;
  width: 1.87em;
  background-color: #e41b23;
  border-radius: 0 4.37em 4.37em 0;
  transform-origin: 50% 100%;
  bottom: 5.31em;
  animation: claw-1-r 2s infinite;
}
.claw-1-r {
  left: -0.31em;
}
.claw-2-r {
  left: 15.31em;
}
@keyframes claw-1-r {
  50% {
    transform: rotate(15deg);
  }
}
.mouth {
  content: "";
  position: absolute;
  height: 0.93em;
  width: 1.87em;
  border: 0.43em solid #570c0e;
  border-radius: 0 0 2.5em 2.5em;
  border-top: none;
  top: 1.25em;
  left: 5em;
  z-index: 2;
}
.legs-1 {
  position: absolute;
  height: 2.5em;
  width: 0.62em;
  background-color: #99151b;
  z-index: -1;
  top: 5em;
  left: 0.62em;
  box-shadow: 3.12em 0 #99151b, 6.25em 0 #99151b, 9.37em 0 #99151b;
  animation: legs-1 1s infinite;
}
@keyframes legs-1 {
  50% {
    transform: translateY(-0.62em);
  }
}
.legs-2 {
  position: absolute;
  height: 2.5em;
  width: 0.62em;
  background-color: #99151b;
  z-index: -1;
  top: 5em;
  left: 2.18em;
  box-shadow: 6.25em 0 #99151b;
  animation: legs-1 1s 0.5s infinite;
}
@keyframes legs-2 {
  50% {
    transform: translateY(-0.62em);
  }
}
.eyes {
  position: absolute;
  height: 3.75em;
  width: 3.75em;
  background-color: #570c0e;
  border-radius: 50%;
  border: 0.93em solid #ffffff;
  bottom: 6.25em;
  left: 0.93em;
}
.eyes:before {
  position: absolute;
  content: "";
  height: 1.87em;
  width: 1.87em;
  background-color: #570c0e;
  border-radius: 50%;
  border: 0.93em solid #ffffff;
  bottom: -0.9em;
  left: 5em;
}

Comments

Popular posts from this blog

Toggle animation using CSS!!!

HTML CODE: <! DOCTYPE html > < html > < head >     < meta charset = "utf-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1" >     < title > Toggle </ title >     < link rel = "stylesheet" href = "Toggle.css" > </ head > < body > < input type = "checkbox" id = "day-night" >< label for = "day-night" ></ label > < div class = "content" >         < div class = "moon-sun" ></ div >     < div class = "cuboid floor one" >         < div class = "side" ></ div >         < div class = "side" ></ div >         < div class = "side" ></ div >         < div class = "side" ></ div >         < div class = "side" ></ div >   ...

Animated amongus !!!

HTML CODE: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Among Us </ title >     < link rel = "stylesheet" href = "amongus.css" > </ head > < body >     < div class = "player" >         < div class = "visor" ></ div >         < div class = "backpack" ></ div >         < div class = "leg front" ></ div >         < div class = "leg back" ></ div >         < div class = "shade" ></ div >     </ div > </ body > </ html > CSS CODE: html , body {     height : 100vh ; } body {     display : flex ;     align-items : center ; ...

Mountains and Truck

  HTML CODE: <! DOCTYPE html > < html >   < head >     < title > Message Box </ title >     < link rel = "stylesheet" href = "css/mountain.css" />   </ head > < div class = "loop-wrapper" >   < div class = "mountain" ></ div >   < div class = "hill" ></ div >   < div class = "tree" ></ div >   < div class = "tree" ></ div >   < div class = "tree" ></ div >   < div class = "rock" ></ div >   < div class = "truck" ></ div >   < div class = "wheels" ></ div > </ div > </ html > CSS CODE: body {     background : #136482 ;     overflow : hidden ;     font-family : 'Open Sans' , sans-serif ;   }   .loop-wrapper {     margin : 0 auto ;     position : relative ;     display : block ...