Если вы делаете сайт то вам может понадобится всплывающее меню (особенно для мобильной версии сайта). Я разработал такое меню что-бы любой мог вставить его в свой сайт. Я оставлю ссылку для загрузки файла и код в низу (с разъяснениями). Если будут какие-то вопросы смело пишите!
Ссылка: https://cloud.mail.ru/public/VQBw/PSsBrPioQ
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>Главная</title>
<style>
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/*Основные настройки*/
#sidebar {left: -300px;
-moz-transition: all 700ms;
-webkit-transition: all 700ms;
transition: all 700ms;
/*Плавная анимация*/
}
/*Меню не видно*/
#sidebar.active {left: 0px}
/*Меню видно*/
body {background: #37373F}
/*Более подходящий фон */
button {position: absolute; width: 295px; height: 50px; background: #28282E; border: 1px solid #28282E}
/*Важно не удалять!*/
.bt {background: #2E2E35}
.bt:hover {background: #37373F}
.bt span {background: #37373F}
.bt:hover span {background: #2E2E35}
/*Эффекты при наведении на кнопку*/
.btt {background: #28282E}
.btt:hover{background: #2E2E35}
/*Эффекты при наведении на кнопки в меню*/
</style>
</head>
<body>
<div style="position: absolute; width: 100%; height: 100px; left: 0px; top: 0px; background: #28282E">
<div class="bt" style="position: absolute; width: 58px; height: 58px; right: 30px; top: 21px; border-radius: 5px; transform: matrix(1, 0, 0, -1, 0, 0); cursor: pointer" onclick="openmenu()">
<span class="bt" style="position: absolute; width: 40px; height: 6px; left: 9px; top: 41px; border-radius: 1px"></span>
<span class="bt" style="position: absolute; width: 40px; height: 6px; left: 9px; top: 26px; border-radius: 1px"></span>
<span class="bt" style="position: absolute; width: 40px; height: 6px; left: 9px; top: 11px; border-radius: 1px"></span>
</div>
<!-- Кнопка --->
</div>
<!-- Верхняя полоса --->
<div id="sidebar" style="box-sizing: border-box; position: fixed;width: 300px; height: 100%; background: #28282E">
<div style="box-sizing: border-box; position: absolute;width: 2px; height: 100%; left: 298px; background: #37373F"></div>
<!-- Тонкая линия --->
<h1 style="position: absolute; height: 44px; left: 30px; top: 23px; font-style: bold; font-size: 40px; color: #FFFFFF">Меню сайта</h1>
<button class="btt" style="position: absolute; width: 298px; height: 50px; left: 0px; top: 91px" onclick="window.location.href = 'https://www.programmersforum.rocks/u/Fierce_Pro/summary';">
<h1 style="position: absolute; height: 27px; left: 30px; top: 7px; font-style: normal; font-size: 24px; color: #FFFFFF">Главная</h1>
</button>
<button class="btt" style="position: absolute; width: 298px; height: 50px; left: 0px; top: 141px" onclick="window.location.href = 'https://www.programmersforum.rocks/u/Fierce_Pro/summary';">
<h1 style="position: absolute; height: 27px; left: 30px; top: 7px; font-style: normal; font-size: 24px; color: #FFFFFF">Контакты</h1>
</button>
<button class="btt" style="position: absolute; width: 298px; height: 50px; left: 0px; top: 191px" onclick="window.location.href = 'https://www.programmersforum.rocks/u/Fierce_Pro/summary';">
<h1 style="position: absolute; height: 27px; left: 30px; top: 7px; font-style: normal; font-size: 24px; color: #FFFFFF" >О нас</h1>
</button>
<!-- Кнопки --->
</div>
<!-- Меню --->
<script>
function openmenu() {
document.getElementById('sidebar').classList.toggle('active')
}
//Выдвигание и задвигание меню
</script>
<!-- Надеюсь я вам помог) --->
</body>
</html>