Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632754 Views

Latest files of /cody/atherosai/ui/dropdown-menu-01

assets/ cody/atherosai/ui/dropdown-menu-01/assets/
10 Items
  • settings.svg
  • premium.svg
  • joe-doe-profile.png
  • tutorials.svg
  • profile.svg
  • logout.svg
  • search.svg
  • message.svg
  • style.css cody/atherosai/ui/dropdown-menu-01/style.css
    94 Views
    0 Comments


    :root {
    --primary: #625BFE;
    --text: #0F192D;
    --text-gray: #5A678C;
    --gray: #c0bcff;
    --error: #E3452F;
    index.html cody/atherosai/ui/dropdown-menu-01/index.html
    338 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8">
    <title>Dropdown Menu 01</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link
    script.js cody/atherosai/ui/dropdown-menu-01/script.js
    156 Views
    0 Comments

    const profile = document.querySelector('.profile');
    const dropdown = document.querySelector('.dropdown__wrapper');

    profile.addEventListener('click', () => {
    dropdown.classList.remove('none');
    dropdown.classList.toggle('hide');
    })