How To Build An Animated Hamburger Menu With Only CSS

  Рет қаралды 102,382

Web Dev Simplified

Web Dev Simplified

Күн бұрын

Free CSS Selector Cheat Sheet: webdevsimplified.com/specific...
Hamburger menus are incredibly popular in sites, but building one that is animated, responsive, and uses no JavaScript is quite difficult. In this video I will show you how to build a hamburger menu with only CSS that is fully responsive and animated.
📚 Materials/References:
GitHub Code: github.com/WebDevSimplified/c...
Emmet Video: • Learn Emmet In 15 Minu...
Box Model Video: • Learn CSS Box Model In...
Box Model Article: blog.webdevsimplified.com/202...
CSS Variables Video: • CSS Variables Tutorial
CSS Variables Article: blog.webdevsimplified.com/202...
:has Selector Video: • This Is So Much More T...
:has Selector Article: blog.webdevsimplified.com/202...
🌎 Find Me Here:
My Blog: blog.webdevsimplified.com
My Courses: courses.webdevsimplified.com
Patreon: / webdevsimplified
Twitter: / devsimplified
Discord: / discord
GitHub: github.com/WebDevSimplified
CodePen: codepen.io/WebDevSimplified
⏱️ Timestamps:
00:00 - Introduction
00:30 - Demo
01:20 - HTML
03:22 - CSS Setup/Variables
04:52 - Hamburger Menu Styles
10:30 - Hamburger Menu Animation
18:00 - Sidebar Animation
21:52 - Accessibility Styles
#HamburgerMenu #WDS #CSS

Пікірлер: 142
@beinyourguard
@beinyourguard Жыл бұрын
the thing I like about kyle is that he just doesn't go for like something ordinary. he takes something that is somewhat easy to do to a whole new level, bringing scalability to the code itself
@codedjango
@codedjango Жыл бұрын
That's some serious CSS skills...
@felix-ve8jk
@felix-ve8jk Жыл бұрын
Great video, man! Still at the beginning of my coding, but I really liked this one using trigonometry. I'm coming from a machinist and machine programming background, and this was a really fun one for me.
@mariejoannaantoniadi227
@mariejoannaantoniadi227 Жыл бұрын
I love you for ever. The calc for the animation didn't work quite as expected when I changed the --bar-width but I worked around it. Perfect, Perfect, Perfect. Many thanks for that.
@ELMlKO
@ELMlKO Жыл бұрын
in this video Web Dev Simplified became Web Dev
@noahr1545
@noahr1545 Жыл бұрын
This is great as always! Love your videos and your courses!!
@anabeond
@anabeond Жыл бұрын
Great video! And the way you explained everything was so easy to follow, thanks a lot! You've got a new subscriber :)
@robmartin6159
@robmartin6159 Жыл бұрын
Awesome video. When the colors had to flip with focus-visible, the colors were hardcoded. If the colors in root were changed, the .hamburger-menu:has(input:checked) would use the old colors. I played around and discovered that in :root, a var defined can be used in another var. So I created a --light-color and --dark-color and used those for foreground and background. So changing those 2 vars will keep colors consistent. :root { --light-color: white; --dark-color: #333; --bar-width: 60px; --bar-height: 8px; --hamburger-gap: 6px; --foreground: var(--dark-color); --background: var(--light-color); --hamburger-margin: 8px; --animation-timing: 200ms; --hamburger-height: calc((var(--bar-height) * 3) + (var(--hamburger-gap) * 2)); } .hamburger-menu:has(input:checked) { --foreground: var(--light-color); --background: var(--dark-color); }
@axelandru9346
@axelandru9346 7 ай бұрын
He is the CSS guy of the internet. Bless up Sir !
@Caariin88
@Caariin88 5 ай бұрын
Great tutorial, i love how you also explain so anyone can understand what you are doing!
@theisoj
@theisoj Жыл бұрын
Very great tutorial! Thanks Kyle!
@MohamadOmar-oi3ur
@MohamadOmar-oi3ur Жыл бұрын
That's really awesome man!
@PeterPan3713
@PeterPan3713 Жыл бұрын
This is awesome! Thank you very much for sharing!
@ozordiprince9405
@ozordiprince9405 Жыл бұрын
Funny you uploaded this. I was literally about to just implemennt something like this but had no idea how
@mariumbegum7325
@mariumbegum7325 Жыл бұрын
Very interesting tutorial - great work!
@KennehGebra-cf9ds
@KennehGebra-cf9ds 4 ай бұрын
Thanks for making easy thing complicated
@vincentdoerk3552
@vincentdoerk3552 Жыл бұрын
I can only say thank you! I learned so much by watching this video... superb content! god bless you and your fam!
@satisfymycuriosity
@satisfymycuriosity Жыл бұрын
Mad skills, respect
@joao-lucky
@joao-lucky 9 ай бұрын
great video, very simple and taught
@Zeero3846
@Zeero3846 Жыл бұрын
Glad to know how the transform actually works finally. I implemented a CSS only button a while back, but I had to go through a lot of guessing to figure how it worked because CSS devs didn't believe in variables for the longest time, so most of the examples used pre-calculated numbers with no explanation, which was exacerbated by the fact that the animation wasn't symmetric either. Also, the has() selector (and I think also the transform style) wasn't around when I implemented my button, so I'll probably take a second look at that and see if my company is already using capable browsers.
@yevseldev
@yevseldev Жыл бұрын
Thank you so much. You saved me my job.
@ivn9119
@ivn9119 11 ай бұрын
you are the God of CSS .... great job 🙂
@cbennder3877
@cbennder3877 Жыл бұрын
Top, works very well, Thank you Kyle
@Fooney1
@Fooney1 Жыл бұрын
Prefect timing.
@medvedevleandro
@medvedevleandro Жыл бұрын
Thank you very much, Kyle.
@redaelgountari
@redaelgountari Жыл бұрын
thank you so much for this great video
@Ossielmx
@Ossielmx Жыл бұрын
Thank's Kyle! ⛽ Creative code☕
@NOTHING-en2ue
@NOTHING-en2ue Жыл бұрын
you're great Kyle
@davidallred991
@davidallred991 Жыл бұрын
I recently had to do one of these for a front end mentor project. For me the actual hamburger menu was not very difficult, what was more complicated was working on the accessibility. Would love to see a video where this is done properly. Although you made a focus highlight on it, it is far from accessible for screen readers and needs a lot more work with aria-labels, changing aria-expanded status on open/close. etc. Would be great to see a video step by step with explanations on this because I found lots of videos on how to make the menu, but couldn't find many on making it properly accessible, so I am sure I didn't do it 100% correct.
@keylanoslokj1806
@keylanoslokj1806 Жыл бұрын
Accessibility>>> than just looks
@Fooney1
@Fooney1 Жыл бұрын
What % of users use a screen reader?
@nbbhaskar3294
@nbbhaskar3294 Жыл бұрын
​​@@Fooney1 in the USA, all public websites should comply with Americans with Disabilities Act, other wise you are exposing your business to potential law suites. So, you see it's not just about % of people using screen readers and other assistive technologies. I am not sure about other parts of the world though.
@Fooney1
@Fooney1 Жыл бұрын
@@nbbhaskar3294 I really doubt a US company has ever suffered a penalty under that act lol. In business it is about what % will use the thing you just paid for.
@Fooney1
@Fooney1 Жыл бұрын
@@nbbhaskar3294 I just looked into and surprising enough a law made in 1990 doesn't mention websites at all. That being said you could get sued in civil court but you cat get sued in civil court for anything. Laws and rights don't matter in civil court anyway so why bother?
@guillermomazzari8320
@guillermomazzari8320 12 сағат бұрын
Thank you so much!
@deankinyua2365
@deankinyua2365 4 ай бұрын
This is genius bro
@vuongal1658
@vuongal1658 Жыл бұрын
Thank you so much🤩🤩
@c1zztm450
@c1zztm450 Жыл бұрын
awesome! ty
@brunosuperman
@brunosuperman 9 ай бұрын
Thank you!
@chriscentproductions6905
@chriscentproductions6905 4 ай бұрын
YESSS!!! I can finally remove some javascript lines with this 😆😆😆
@dheerajy2202
@dheerajy2202 Жыл бұрын
Thanks Kyle
@TheMetalMag
@TheMetalMag Жыл бұрын
you rock! thx
@SkyFly19853
@SkyFly19853 Жыл бұрын
Could you also make a tutorial on dark mode them with a responsive nav bar? Thank you in advance!
@khalilbenmeziane8836
@khalilbenmeziane8836 Жыл бұрын
thank you kyle
@harshalmali856
@harshalmali856 8 ай бұрын
this is cool video bro thanks for it highly recomended to all to go through some modern web development
@KX36
@KX36 Жыл бұрын
Brilliant.
@Greediium
@Greediium Жыл бұрын
Broski's Your a vscode Demon, would it be possible for you to make a video or a cheatsheet on all the key combinations you use to code? Great tutorial! Hope you're having a nice day!
@rishiraj2548
@rishiraj2548 Жыл бұрын
Great!
@mjshubham21
@mjshubham21 Жыл бұрын
It was awesome!! How can we implement the same in react?
@ramsundararaman6615
@ramsundararaman6615 Жыл бұрын
This is a cool lesson Kyle! Thank you very much. Any reason why whatever that's added to the html gets rendered below the fold? Maybe the sidebar should have a style that allows for the main content to display within the fold?
@ramsundararaman6615
@ramsundararaman6615 Жыл бұрын
Also, it doesn't seem to work in Firefox!
@kenthhagstrom
@kenthhagstrom 10 ай бұрын
@@ramsundararaman6615 the :has selector is currently not supported by Firefox
@AndyMorrisArt
@AndyMorrisArt 7 ай бұрын
Genius!
@vickrammark2082
@vickrammark2082 Жыл бұрын
Hey Kyle this was an awesome viedo. I have a doubt how to make a div expand from right to left. I have been seeing different solutions for it but nothing satisifies me. Please do a shorts on it.
@Infiniband11
@Infiniband11 2 ай бұрын
Did you work this out? Trying to do the same.
@jawad_youtube
@jawad_youtube Жыл бұрын
I needed this 1year ago
@Zeero3846
@Zeero3846 Жыл бұрын
So one thing I'm curious about is if the hamburger menu weren't up in the corner. What if it was below a header that could also change in size? Personally, I don't think it's ideal, but I may be stuck with it for the time being.
@renejacques8288
@renejacques8288 19 күн бұрын
Say I select a link from the sidebar, how can change its color or put a line under it so I can see what link is selected please? Great video.
@nikhilgupta6415
@nikhilgupta6415 2 ай бұрын
I'm a fan now
@olipaype
@olipaype Жыл бұрын
I learn a lot with this master class, but I tried to run on Chrome, Firefox, Edge, and Brave... in all works but firefox. Is there any compatibility with css selectors?
@arcanelore168
@arcanelore168 3 ай бұрын
It's like a lot to know!
@SLC2010Charleston
@SLC2010Charleston 5 ай бұрын
Works great. I would also like to turn on a transparent overlay across the page to prohibit a user from clicking on anything other than the menu. It is defined display "none" but the "has" selector doesn't seem to want to set the display property to block. Is there a limitation to "has"? .hamburger-menu:has(input:checked) + .overlaypage{ display:block; }
@jp_vids9631
@jp_vids9631 Жыл бұрын
Can you make a video that covers object relational mapping (ORM )
@matthewharting3390
@matthewharting3390 Жыл бұрын
What do you do for those using Firefox as it does not use :has yet, without explicitly telling Firefox to allow it.
@sonbui7063
@sonbui7063 Ай бұрын
does the hamburger menu button and the menu list has to be in the same div class ? Cuz in my code the menu list and button are in different div class (the button is in the header class while the list is in the main class). And when i try the animation the list does not slide in as expected :)
@SoulSovereignty
@SoulSovereignty 11 ай бұрын
I think you forgot something. When someone selects a menu option, how do you make the menu disappear? If you are navigating to an entirely new page, then perhaps that "reset" is implicit. However, if you are simply scrolling downward to a section of the page...there needs to be a way to make the menu auto-disappear.
@kodomo5490
@kodomo5490 Жыл бұрын
is it possible to do this if the sidebar is not located near the checkbox?
@alilatoon
@alilatoon 6 ай бұрын
I am wondering how would I be able to select multiple classes after the "+ .sidebar" I realize now it only works on one class but I need it for multiple classes.
@edwardkenway6822
@edwardkenway6822 Жыл бұрын
It's So Good
@loverboy069
@loverboy069 Жыл бұрын
Clicking on the hamburgur menu class or in my case, mobile-nav class doesn't check the box and setting pointer events to none stops me from toggling.
@panka33
@panka33 4 ай бұрын
what is that '*,' (asterisk+comma) at the very beginning of the CSS file? Cheers
@valleeth
@valleeth Жыл бұрын
Issue on Firefox 110, but great work.
@astacey84
@astacey84 10 ай бұрын
This Is The Sidebar very subtle, good job
@TRIC4pitator
@TRIC4pitator Жыл бұрын
omg , using a check box as an on off switch is so smart
@danieldragan9220
@danieldragan9220 9 ай бұрын
@wedbevsimplified Help! How do I stop scrolling in the background when the burger menu is open on mobile??
@ashwinsuryawanshi
@ashwinsuryawanshi Жыл бұрын
Waiting for your video on React Fiber.
@MarkConstable
@MarkConstable Жыл бұрын
I got all excited about this, but it doesn't work with Firefox, probably because of "Pseudo-elements are also not valid selectors within :has() and pseudo-elements are not valid anchors for :has()." from MDN. Any workarounds... aside from don't use Firefox?
@ahmedbennani5401
@ahmedbennani5401 Жыл бұрын
You have to put the (input) element outside and before the (label) element, and try (input:checked + .hamburger-menu::after) and (input:checked + .hamburger-menu::after) selectors instead, but you will have to add a div for the middle line of the hamburger since the input element won't play that role anymore.
@rafaelvarela619
@rafaelvarela619 Жыл бұрын
My before and after pseudo elements are somehow with a line around then in bigger screens and it changes the color os the lines, can someone help me with that?
@ezramammo3056
@ezramammo3056 Жыл бұрын
Can you please make a full course on node js please
@gurvirbaraich2028
@gurvirbaraich2028 Жыл бұрын
Seeing after 5 seconds of upload
@Dj7wiLLY
@Dj7wiLLY 7 ай бұрын
doesn't work, after I added the --x-width to .hamburger-menu::before and after, when I click on hamburger "icon", all the lines vanishes aside
@erice.3892
@erice.3892 Жыл бұрын
the CSS wizard
@CodingW3
@CodingW3 9 ай бұрын
👏🏻👏🏻👏🏻👏🏻
@chinmayghule8272
@chinmayghule8272 Жыл бұрын
Another thing we can do is to make this a web component. That way we can use it in any project.
@JnoobGodMode
@JnoobGodMode Жыл бұрын
bro i have an issue, the problem is that i can still scroll and since the size is fized i can see the bottom, idk how to stop it from scrolling, can someone help me pls...
@matthewjura3377
@matthewjura3377 Жыл бұрын
It doesn't work on Firefox and Android chrome?
@najmantube
@najmantube 6 ай бұрын
I used keyboard tabbing to focus the hamburger icon then pressed 'Enter': nothing happened. I then found out that in order to check a checkbox you have to press the spacebar instead. For screen readers you could put a message inside the label (e.g. Press the spacebar to open the menu) but keyboard users 1) don't necessarily use a screen reader, 2) aren't necessarily badly-sighted so how, other than having the same text printed on the screen, do we inform them of this unusual behaviour? I'm assuming that most people would think they're dealing with a button (which is toggleable using the 'Enter' key), not a checkbox.
@phoenix-kf3tr
@phoenix-kf3tr Жыл бұрын
Hello Kyle. I bought your course sometime ago. And now I decided to look at it again, but forgot the password. The problem is when I try to reset the password nothing happens. Can you help me with this issue? Thank you in advance)
@salmajahan5834
@salmajahan5834 3 ай бұрын
How can I make it appear from the top? Thanks
@patcollins1779
@patcollins1779 10 ай бұрын
Thanks Kyle. I'm a novice web designer and trying to learn. I've spent a few hours trying to adapt this to be a header or "top bar" rather than a side-bar and I am struggling. Can anyone suggest a straightforward way to put this hamburger menu at the top right in a header? Thank you so much!
@meganlove5681
@meganlove5681 8 ай бұрын
I need help with the same thing. I managed to get the hamburger icon over to the right but can’t figure out how to get the sideabr over to the right. I put my logo, navigation, and the hamburger checkbox in the header. my logo is postioned to the left and that is ok.
@angrybadger6761
@angrybadger6761 Жыл бұрын
I am redesigning my website and this has appeared. Excuse me if you hear the sound of java script being ripped out and given a through beating into the rice fields. You are the css Ninja my friend and I'm off to play this game as my java script skills are lacking so I have to depend on others, which I don't like to do. Many thanks for this.
@mauro21523
@mauro21523 Жыл бұрын
Codegrid 🤪, but of course the best one to explain it
@DJ66SXX
@DJ66SXX 4 ай бұрын
.hamburger:has(input:checked) + .sidebar does not work, maybe there has been a CSS update from last year?
@martinkusy2560
@martinkusy2560 8 ай бұрын
I can't get it work in Firefox. Any idea why that could be.
@mohammedkaka5558
@mohammedkaka5558 9 ай бұрын
cool but the :has property does not work on firefox so it does not cross (X) the hamburger
@blaneandgame9
@blaneandgame9 Жыл бұрын
when focused the checkbox still has an outline
@ivanchiazzari7904
@ivanchiazzari7904 6 ай бұрын
At school I thought we would never use the theorem, but now we see Pythagoras everywhere😃
@aarondz789
@aarondz789 Жыл бұрын
cool
@delfinobenavidesii4487
@delfinobenavidesii4487 4 ай бұрын
Challenge: Can you recreate this in a HTA application (css3 compatibility)? Might have to use additional coding.
@suti1979
@suti1979 Жыл бұрын
Gread video, but it seems it's not working with firefox... probably, the bco the :has property.... :(
@gurvirbaraich2028
@gurvirbaraich2028 Жыл бұрын
First view and comment.
@devbyveritech
@devbyveritech 8 ай бұрын
I'm becoming a web designer tomorrow. They don't go through this stress
@Juppieboy
@Juppieboy 3 ай бұрын
Hiii!!! newbie question here ( real noob no joke) i made this hamburger menu, but now i cant put stuff in middle of the page :( anyway to fix?
@geoffreyjohn2330
@geoffreyjohn2330 4 ай бұрын
very nice video but my has tag is not working, which you're are using 12.30min
@User-404
@User-404 Жыл бұрын
i need to review this a couple of time to understand at least the basics, im wayyy lost, 10 mins in
@ELMlKO
@ELMlKO Жыл бұрын
visual studio code at 13:21
@wolandsmachine
@wolandsmachine 11 ай бұрын
great lesson, but shame,for some reason this code doesn't work in Firefox.
@ErikHansenDrums
@ErikHansenDrums 11 ай бұрын
:has isn't supported in firefox still
@mmelimahlobo7656
@mmelimahlobo7656 Жыл бұрын
Geez thats a powerful but a bit complex hey
Responsive Navbar Tutorial
13:35
Web Dev Simplified
Рет қаралды 500 М.
Learn Flexbox CSS in 8 minutes
8:16
Slaying The Dragon
Рет қаралды 1,4 МЛН
Жайдарман | Туған күн 2024 | Алматы
2:22:55
Jaidarman OFFICIAL / JCI
Рет қаралды 680 М.
World’s Deadliest Obstacle Course!
28:25
MrBeast
Рет қаралды 122 МЛН
Smart Sigma Kid #funny #sigma #comedy
00:19
CRAZY GREAPA
Рет қаралды 21 МЛН
Luck Decides My Future Again 🍀🍀🍀 #katebrush #shorts
00:19
Kate Brush
Рет қаралды 7 МЛН
How to build an accessible hamburger menu with HTML, SCSS & JS
13:25
CSS hamburger menu [Hindi]
36:20
Harshit vashisth
Рет қаралды 43 М.
How To Customize Checkbox with React
1:05
Radzion Dev
Рет қаралды 2,9 М.
Animated Hamburger Menu Tutorial - CSS Effects
6:55
codeSTACKr
Рет қаралды 507 М.
Learn CSS Transform In 15 Minutes
14:37
Web Dev Simplified
Рет қаралды 168 М.
Create a responsive navigation nav with no JS!
44:13
Kevin Powell
Рет қаралды 471 М.
Experiential Learning Benefits and Experiential Learning Activities
9:49
Simply Jen with dōTERRA
Рет қаралды 30
Learn CSS Animation In 15 Minutes
15:33
Web Dev Simplified
Рет қаралды 748 М.
Basic, Intermediate & Pro animated hamburger icons
59:41
Kevin Powell
Рет қаралды 142 М.
Жайдарман | Туған күн 2024 | Алматы
2:22:55
Jaidarman OFFICIAL / JCI
Рет қаралды 680 М.