Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633208 Views

Latest files of /cody/atherosai/ui/menu-03

assets/ cody/atherosai/ui/menu-03/assets/
1 Items
  • profile_new.jpg
  • style.css cody/atherosai/ui/menu-03/style.css
    88 Views
    0 Comments


    :root {
    --notification: #58A6FF;
    --github-dark: #010409;
    --github-dark-lighter: #0D1117;
    --github-dark-border: #30363D;
    --github-button-hover: #8B949E;
    index.html cody/atherosai/ui/menu-03/index.html
    351 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Menu Example</title>
    <link rel="stylesheet" href="style.css">
    </head>
    <body>
    script.js cody/atherosai/ui/menu-03/script.js
    152 Views
    0 Comments

    const button = document.getElementById('avatar-navbar');
    const closeButton = document.querySelector('.close-button');
    const navigationMenu = document.querySelector('.navigation__menu');

    button.addEventListener('click', () => {
    navigationMenu.classList.remove('none');
    navigationMenu.classList.remove('hide');