New Self New Life
No Result
View All Result
  • Home
  • Entertainment
  • Celebrity
  • Cinema
  • Music
  • Digital Lifestyle
  • Social Media
  • Softwares
  • Devices
  • Home
  • Entertainment
  • Celebrity
  • Cinema
  • Music
  • Digital Lifestyle
  • Social Media
  • Softwares
  • Devices
New Self New Life
No Result
View All Result
Home Softwares

Animated Hamburger Menu [Article] | Treehouse Blog

by admin
3 years ago
in Softwares
Animated Hamburger Menu [Article] | Treehouse Blog
Share on FacebookShare on Twitter


Hamburger menus are nice for toggling a cellular navigation. Including slick animations to indicate the open or closed state might be tough however I’ll clarify how this may be finished fairly simply. Let’s get began. ?

If video tutorials are extra your factor:

In case you’d wish to see a demo of this earlier than we get began, you’ll be able to see this in motion at my codepen:

Animated Hamburger Menu Codepen

We’ll have to create a number of recordsdata to get began: index.html, types.css, & app.js.

HTML

In our index.html file, lets setup a navigation with <nav></nav>.

Inside our nav tag, we’ll create a container for our hamburger menu. This can simply be a div with the category of hamburger-menu.

<nav>
    <div class="hamburger-menu"></div>
</nav>

Subsequent, we’ll add in every of the three hamburger menu ‘bars’. These might be divs with the category of ‘ham-bar’ however they may every get a novel class title as effectively. That is the code I’ll be working with:

<nav>
    <div class="hamburger-menu">
        <div class="ham-bar bar-top"></div>
        <div class="ham-bar bar-mid"></div>
        <div class="ham-bar bar-bottom"></div>
    </div>
</nav>

That ought to be it for our HTML, so now let’s sort out the CSS.

CSS

We will get began with some fundamental types and resets:

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

physique {
    background-color: #ccc;
}

As soon as that’s finished, lets add some fast stylings to the nav.

nav {
    padding: 1rem;
    background-color: #222;

    show: flex;
    justify-content: flex-end;
    align-items: middle;
}

For the reason that solely youngster factor of our nav is the <div class="hamburger-menu"></div> we are able to use flex to justify the content material to flex-end in order that our hamburger menu is all the way in which to the proper.

Subsequent, we are able to begin styling our precise hamburger menu.

.hamburger-menu {
    top: 50px;
    width: 50px;
    place: relative;
    cursor: pointer;
    padding: 1rem;
}

We place this relative since its youngster parts (<div class="ham-bar"></div> * 3) will must be positioned completely.

All the <div class="ham-bar"></div> parts will get the next types:

.ham-bar {
    width: 70%;
    top: 4px;
    background-color: white;
    border-radius: 25px;
    place: absolute;
    prime: 50%;
    left: 50%;
    rework: translate(-50%, -50%);
    transition: rework .6s, opacity .8s, prime .6s;
}

You’ll discover you’ll be able to solely see one ham-bar now. Truly, all three are seen. They’re simply all completely positioned to the middle of .hamburger-menu. So let’s alter the bar-top and bar-bottom:

.bar-top {
    prime: 25%;
}

.bar-bottom {
    prime: 75%;
}

Now you must see your hamburger menu! Subsequent, we’ll wish to hop into the HTML and add a category of lively to our <div class="hamburger-menu"></div>. It is because once we click on on our hamburger menu, we’ll wish to toggle this class on and off.

When the hamburger menu has a category of lively, we’ll wish to model the <div class="ham-bar"></div> appropriately. Lets try this now.

For bar-top we wish to middle it and rotate it:

.hamburger-menu.lively .bar-top {
    rework: translate(-50%, -50%) rotate(-315deg);
    prime: 50%;
}

for bar-mid we wish to set the opacity to 0:

.hamburger-menu.lively .bar-mid {
    opacity: 0;
}

for bar-bottom we wish to middle it and rotate it:

.hamburger-menu.lively .bar-bottom {
    rework: translate(-50%, -50%) rotate(-225deg);
    prime: 50%;
}

Now go forward and add a category of lively to your hamburger-menu within the HTML to verify your hamburger-menu resembles and x. If it does, nice! If not, make sure that to re-read the above and determine the place you’ve gone incorrect. As soon as that’s finished, let’s transfer on to toggling this lively class by way of JavaScript!

JavaScript

The JavaScript may be very easy, we’ll simply wish to add an occasion listener on <div class="hamburger-menu"></div>. We will create a variable for this as effectively:

const hamMenu = doc.querySelector('.hamburger-menu');
hamMenu.addEventListener('click on', () => {

});

All we wish to do when this occasion is triggered, is toggle a category of lively to <div class="hamburger-menu"></div>:

const hamMenu = doc.querySelector('.hamburger-menu');
hamMenu.addEventListener('click on', () => {
    hamMenu.classList.toggle('lively');
});

And that’s it, your hamburger menu ought to toggle each the open and closed state when clicked!



Source link

Tags: AnimatedArticleBlogHamburgerMenuTreehouse
Previous Post

Celebs That Grew Up In Random Small Towns And Are Definitely Not Nepotism Babies

Next Post

Charlotte Instructs George to Bow at the Queen’s Funeral

Related Posts

How to Add Custom Style Variations to WordPress Blocks — Speckyboy
Softwares

How to Add Custom Style Variations to WordPress Blocks — Speckyboy

by admin
June 2, 2025
Smart software replaces expensive sensors for glass wall detection with 96% accuracy
Softwares

Smart software replaces expensive sensors for glass wall detection with 96% accuracy

by admin
June 1, 2025
User Guide For UnoPim PDF Generator
Softwares

User Guide For UnoPim PDF Generator

by admin
May 31, 2025
Infragistics Ultimate 25.1 includes updates across several of its UI toolkit components
Softwares

Infragistics Ultimate 25.1 includes updates across several of its UI toolkit components

by admin
May 29, 2025
Qt bridges the language barrier gap
Softwares

Qt bridges the language barrier gap

by admin
May 28, 2025
Next Post
Charlotte Instructs George to Bow at the Queen’s Funeral

Charlotte Instructs George to Bow at the Queen's Funeral

The Basics of SEO in 2022 [Infographic]

The Basics of SEO in 2022 [Infographic]

  • Trending
  • Comments
  • Latest
Anant Ambani wedding: Celebs, wealthy elite attend lavish billionaire festivities – National

Anant Ambani wedding: Celebs, wealthy elite attend lavish billionaire festivities – National

March 1, 2024
Product Information Management Trends (PIM)

Product Information Management Trends (PIM)

February 4, 2022
Deployment Diagrams Explained in Detail, With Examples

Deployment Diagrams Explained in Detail, With Examples

August 11, 2021
The Data Lake Security Checklist: IT Leader Essentials

The Data Lake Security Checklist: IT Leader Essentials

August 1, 2022
Every Kathryn Hahn Film Performance, Ranked

Every Kathryn Hahn Film Performance, Ranked

December 24, 2022
Bolstr bag, PowerSmart electric mower, and more – Review updates

Bolstr bag, PowerSmart electric mower, and more – Review updates

June 24, 2023
The Pros and Cons of Freelance Coding [Article]

The Pros and Cons of Freelance Coding [Article]

December 5, 2023
10 really good gadgets that cost less than $100 – TechCrunch

10 really good gadgets that cost less than $100 – TechCrunch

December 17, 2021
Samsung may incorporate Perplexity’s AI tech in its phones

Samsung may incorporate Perplexity’s AI tech in its phones

June 2, 2025
Sammy Hagar and Eddie Van Halen Wanted to Write Song on Cello

Sammy Hagar and Eddie Van Halen Wanted to Write Song on Cello

June 2, 2025
Lady Isabella Hervey on bouncing back from her unhappy marriage and her new life on the Algarve

Lady Isabella Hervey on bouncing back from her unhappy marriage and her new life on the Algarve

June 2, 2025
19 Sustainable Clothing Brands For Stylish Men In 2025

19 Sustainable Clothing Brands For Stylish Men In 2025

June 2, 2025
How to Add Custom Style Variations to WordPress Blocks — Speckyboy

How to Add Custom Style Variations to WordPress Blocks — Speckyboy

June 2, 2025
Instagram Creators With Over 100K Followers Will Get Access to Additional Comment Filters

Instagram Creators With Over 100K Followers Will Get Access to Additional Comment Filters

June 2, 2025
Fantastic Four Star Vanessa Kirby Is Pregnant!

Fantastic Four Star Vanessa Kirby Is Pregnant!

June 2, 2025
Inside Zendaya and Tom Holland’s Marvelous Love Story

Inside Zendaya and Tom Holland’s Marvelous Love Story

June 1, 2025
New Self New Life

Your source for entertainment news, celebrities, celebrity news, and Music, Cinema, Digital Lifestyle and Social Media and More !

Categories

  • Celebrity
  • Cinema
  • Devices
  • Digital Lifestyle
  • Entertainment
  • Music
  • Social Media
  • Softwares
  • Uncategorized

Recent Posts

  • Samsung may incorporate Perplexity’s AI tech in its phones
  • Sammy Hagar and Eddie Van Halen Wanted to Write Song on Cello
  • Lady Isabella Hervey on bouncing back from her unhappy marriage and her new life on the Algarve
  • Home
  • Disclaimer
  • DMCA
  • Privacy Policy
  • Cookie Privacy Policy
  • Terms and Conditions
  • Contact us

Copyright © 2021 New Self New Life.
New Self New Life is not responsible for the content of external sites. slotsfree  creator solana token

No Result
View All Result
  • Home
  • Entertainment
  • Celebrity
  • Cinema
  • Music
  • Digital Lifestyle
  • Social Media
  • Softwares
  • Devices

Copyright © 2021 New Self New Life.
New Self New Life is not responsible for the content of external sites.

slot agp