все гайды
Открытие и закрытие навигационного меню в простонародии "бургера"
Задача
Готовим бургер меню на css и html. Возможно самое распространенное меню используемое в веб приложениях за счет своей компактности и адаптивности.
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<link href='style.css' rel='stylesheet'>
</head>
<body>
<div id='menuToggle'>
<input type='checkbox' />
<span id='span1'></span>
<span id='span2'></span>
<span id='span3'></span>
</div>
</body>
</html>
CSS
html {
background: #ecf0f1;
}
body {
margin: 0;
padding: 0;
}
#menuToggle {
overflow: hidden;
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#menuToggle input {
display: flex;
width: 60px;
height: 60px;
position: absolute;
cursor: pointer;
opacity: 0; /* hide input */
z-index: 1; /* top of the menu */
}
#menuToggle span{
width: 55px;
height: 8px;
margin-bottom: 10px;
background: #191970;
border-radius: 4px;
-webkit-transition: all .5s cubic-bezier(.08,.81,.87,.71);
-moz-transition: all .5s cubic-bezier(.08,.81,.87,.71);
-ms-transition: all .5s cubic-bezier(.08,.81,.87,.71);
-o-transition: all .5s cubic-bezier(.08,.81,.87,.71);
transition: all .5s cubic-bezier(.08,.81,.87,.71);
}
#span1 {
transform-origin: 4px 0px;
}
#span3 {
transform-origin: bottom right;
}
#menuToggle input:checked ~ #span1 {
background-color: #4b0082;
transform: rotate(45deg) translate(8px);
}
#menuToggle input:checked ~ #span2 {
background-color: #0c2461;
transform: rotate(495deg) translate(4px);
}
#menuToggle input:checked ~ #span3 {
background-color: #0c2461;
transform: rotate(45deg);
opacity: 0;
}