Skip to content

Instantly share code, notes, and snippets.

@prof3ssorSt3v3
Created December 7, 2019 22:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save prof3ssorSt3v3/f912a81394698e3058526bcc1a047099 to your computer and use it in GitHub Desktop.
Save prof3ssorSt3v3/f912a81394698e3058526bcc1a047099 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Document</title>
<style>
* {
padding: 0;
margin: 0;
}
.box {
background-color: hsl(220, 70%, 30%);
padding: 10px;
height: 60px;
position: relative; /* for positioning of the center line */
}
.burger {
position: absolute;
top: 37px; /* 1/2 height plus top padding of box, less half burger height */
left: 10px;
background-color: white;
width: 60px;
height: 6px;
line-height: 0;
border-radius: 1px;
transition: all 0.3s linear;
}
.burger::before,
.burger::after {
content: "";
display: block;
position: absolute;
left: 0;
width: 54px; /* same as burger less the border on either side */
height: 0;
border: 3px solid white; /* use border instead of content background */
border-radius: 1px;
transition: all 0.3s linear;
}
.burger::before {
top: 0;
transform-origin: left top;
transform: rotate(0deg) translate(0, -16px);
}
.burger::after {
bottom: 0;
transform-origin: right top;
transform: rotate(0deg) translate(0, 16px);
}
.x .burger {
/* opacity: 0; this and display:none; will impact the :before and :after parts */
background-color: transparent;
}
.x .burger::before {
/* round corners and animate the movement */
border-radius: 6px;
transform: translate(10px, -20px) rotate(45deg);
}
.x .burger::after {
/* round corners and animate the movement */
border-radius: 6px;
transform: translate(-10px, -20px) rotate(-45deg);
}
</style>
</head>
<body>
<div class="box x">
<div class="burger"></div>
</div>
<script>
document.body.addEventListener("click", ev =>
document.querySelector(".box").classList.toggle("x")
);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment