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

Unlocking the Future of Finance
Softwares

Unlocking the Future of Finance

by admin
May 8, 2025
Address bar tweaks – Vivaldi Browser snapshot 3683.4
Softwares

Address bar tweaks – Vivaldi Browser snapshot 3683.4

by admin
May 7, 2025
A faster, sleeker JavaScript experience
Softwares

A faster, sleeker JavaScript experience

by admin
May 10, 2025
How WordPress Agencies Can Improve Site Building Efficiency — Speckyboy
Softwares

How WordPress Agencies Can Improve Site Building Efficiency — Speckyboy

by admin
May 6, 2025
Grand Theft Auto VI delayed again, this time until May 2026
Softwares

Grand Theft Auto VI delayed again, this time until May 2026

by admin
May 5, 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
Cameron Monaghan Discusses Erotic Thriller

Cameron Monaghan Discusses Erotic Thriller

January 13, 2022
Doctor Strange: 12 Best Comic Issues Of The 1990s

Doctor Strange: 12 Best Comic Issues Of The 1990s

December 11, 2021
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
Phantom Parade Gets Opening Movie, Cast Announced

Phantom Parade Gets Opening Movie, Cast Announced

March 8, 2022
The Definitive 30-Step Basic SEO Checklist for 2022

The Definitive 30-Step Basic SEO Checklist for 2022

January 3, 2022
I Tried Calocurb For 90 Days. Here’s My Review.

I Tried Calocurb For 90 Days. Here’s My Review.

January 8, 2025
Adobe commerce module seller invitation

Adobe commerce module seller invitation

April 13, 2022
Best Cryptocurrency Wallets Comparison | SCAND Blog

Best Cryptocurrency Wallets Comparison | SCAND Blog

July 30, 2022
Study Uncovers the One Thing That Cuts Through Climate Apathy: Loss

Study Uncovers the One Thing That Cuts Through Climate Apathy: Loss

May 10, 2025
Millennium Docs Against Gravity Expands Industry Program

Millennium Docs Against Gravity Expands Industry Program

May 10, 2025
Billy Ray Cyrus shares rare photo with daughter Miley amid rumoured family rift

Billy Ray Cyrus shares rare photo with daughter Miley amid rumoured family rift

May 10, 2025
Galantis Is Throwing a Midsommar-Themed Concert at Red Rocks

Galantis Is Throwing a Midsommar-Themed Concert at Red Rocks

May 10, 2025
Startups, Stop Chasing Only Clicks: Why Brand Building (and Out-Of-Home Ads) Deserves Your Attention from Day One

Startups, Stop Chasing Only Clicks: Why Brand Building (and Out-Of-Home Ads) Deserves Your Attention from Day One

May 10, 2025
Bill Gates says he will give away almost all of his money over next 20 years

Bill Gates says he will give away almost all of his money over next 20 years

May 9, 2025
Here’s How You Can Win a $500 Prepaid Visa Gift Card

Here’s How You Can Win a $500 Prepaid Visa Gift Card

May 9, 2025
Ben Affleck Embraces Latina Love Post-Jennifer Lopez Divorce

Ben Affleck Embraces Latina Love Post-Jennifer Lopez Divorce

May 9, 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

  • Study Uncovers the One Thing That Cuts Through Climate Apathy: Loss
  • Millennium Docs Against Gravity Expands Industry Program
  • Billy Ray Cyrus shares rare photo with daughter Miley amid rumoured family rift
  • 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.

u turn slot