Create direction-aware effects using modern CSS

  Рет қаралды 66,003

Kevin Powell

Kevin Powell

Күн бұрын

Пікірлер: 90
@KevinPowell
@KevinPowell Жыл бұрын
So, turns out you can do this quite easily without :has()! Check out this codepen by my Discord community member mrkishi, where he has a very elegant solution: codepen.io/mrkishi/pen/mdQZMRR
@petrlaskevic1948
@petrlaskevic1948 Жыл бұрын
How do you make the sliding underlines of the same width as the items they're sliding below? Right now it looks a bit off, with the sliding ones being the width of the neighbor
@user-ms8ei9le7x
@user-ms8ei9le7x Жыл бұрын
Kevin superest's )))))))
@eioluseyi
@eioluseyi Жыл бұрын
Wow!
@Victor_Marius
@Victor_Marius Жыл бұрын
​@@petrlaskevic1948they (the li::after) have position absolute and width 100% and the li had position relative which makes the width 100% take effect correctly
@Victor_Marius
@Victor_Marius Жыл бұрын
Instead of "nav li:has(+ : hover)" could use "nav:hover li:not(li:hover, li:hover ~ li)" to select all LIs before the hovered one instead of just the single one before the hovered LI. But I guess it would do the same thing as the codepen solution.
@darkwoodmovies
@darkwoodmovies Жыл бұрын
Always mind blowing what you can do with just CSS. As a developer I never really deal with the nitty gritty features of CSS anymore since everything is just built into the design system components.
@_lonewolf
@_lonewolf Жыл бұрын
I've watched so many of your videos and I can't describe how helpful they are. This one came out just at the perfect time too!
@clevermissfox
@clevermissfox 8 ай бұрын
The timing is crazy! I was literally looking for a viewTransition video when I got the Patreon email that a new video dropped and have a current project with a left fixed vertical nav bar. The newest video is using both ! So serendipitous! It happens all the time !
@warguy6474
@warguy6474 Жыл бұрын
just started trying to understand css properties. It's overwhelming but hopefully watching a ton of videos will help me know what they do
@Jana-ns5sg
@Jana-ns5sg Жыл бұрын
You really are the king of CSS aren't you? 😄 Great as always. Will have to rewatch.
@tyler-simoni
@tyler-simoni Жыл бұрын
So, I implemented the effect from the first video in my new portfolio site and I love it, but this is just next level! 🔥
@kaustavroy6542
@kaustavroy6542 Жыл бұрын
Thanks Kevin for the amazing breakdown, I never thought we can use only css to do this type of stuff
@shaystibelman
@shaystibelman Жыл бұрын
wow, that's actually really impressive! Has is such a game changer!
@BenAbode
@BenAbode Жыл бұрын
Haven't been playing around with CSS for a while now so a lot of new things here (like has).. definitely gonna give this a go - cheers for the awesome video!
@eioluseyi
@eioluseyi Жыл бұрын
Wowwwww!! The ":has" selector is so powerful! I remember trying to implement this same effect before :has, I got frustrated and managed what I had. Now, :has has 👀 made the magic possible!!🎉🎉
@ssava_ema
@ssava_ema Жыл бұрын
Am re-watching this video over and over again till next week on Tuesday. Need to understand the secret behind the way you write your CSS
@screamtwice
@screamtwice Жыл бұрын
Two years ago I did this type of effect with Javascript and an empty , man, I love how CSS has evolved! Thank you for sharing this! Very cool!
@HenriqueErzinger
@HenriqueErzinger Ай бұрын
It was VERY common in the early 2000’s, normally using jQuery at the time.
@deadlyecho
@deadlyecho Жыл бұрын
That cleaning you've done is top notch 👌 👏
@faithful834
@faithful834 Жыл бұрын
I subscribe to your channel on any phone I handle. Love you so much, your help comes at the right time.
@stevemarshall5249
@stevemarshall5249 Жыл бұрын
Very impressive. It prompts me to ask - have you ever done a video for producing a multi-level nav menu bar with css only? There are a few around, but I'd be very interested to see what you came up with. I've had a brief look through your past videos but haven't spotted one.
@KevinPowell
@KevinPowell Жыл бұрын
I think I might have a long time ago, but it's not a good idea. That's the type of thing that just needs to have JavaScript to work in all the different ways someone might interact with it.
@stevemarshall5249
@stevemarshall5249 Жыл бұрын
OK that makes sense, thanks for taking the time to reply.@@KevinPowell
@mannixmd
@mannixmd Жыл бұрын
hey firefox if you could hurry up and implement has:() that would be great ;)
@gadoosher
@gadoosher Жыл бұрын
Just when you think you know CSS.. you see a vid that makes your head spin lmao. Going to take this to the lab bc I'm so confused rn 😅
@avon700
@avon700 Жыл бұрын
I am blown away, this is an absolute game changer 💥
@nitsanbh
@nitsanbh Жыл бұрын
I‘ve achieved a similar effect using one additional moving div whose left/width are custom properties, set by JS on mouse events. It’s not “css only”, but it works on all major browsers, and it doesn’t have the weird issue when moving too fast between li’s
@KevinPowell
@KevinPowell Жыл бұрын
That's how I did the previous one I showed at the start (though it moved when an item was selected, not hovered on). I'd go that route for pushing something into production, but still a fun thing to experiment with and learn a lot from 🙂
@HenriqueErzinger
@HenriqueErzinger Ай бұрын
This effect was in every third Wordpress blog in the early 2000’s, during the jQuery days.
@maxwebstudio
@maxwebstudio Жыл бұрын
That's an amazing tips. Thank you Kevin
@74Gee
@74Gee Жыл бұрын
I didn't know you could set a variable inside a rule! My mind is rewriting a lot of CSS now
@PicSta
@PicSta Жыл бұрын
I hope that FF will have :has pseudo-class soon. Frustrating that it's not available by default yet. Great tutorial as always.
@shadowcraftplayer9075
@shadowcraftplayer9075 Жыл бұрын
Amazing effect!
@nadeemr1070
@nadeemr1070 Жыл бұрын
How scroll effect is working for desktop,please make a video on it too.
@Frank-mcdonaldDe
@Frank-mcdonaldDe Жыл бұрын
Hi Kevin, nice short and to the point tutorials. But, why you use a calc on a padding in your nav li, instead of padding-inline-end? It has the same result
@Frank-mcdonaldDe
@Frank-mcdonaldDe Жыл бұрын
I got the answer right away....
@RaphaelRamos-l8b
@RaphaelRamos-l8b 9 ай бұрын
Hi Kevin! Would you recommend creating a css with "Nested" structure or not? Because, I rarely see someone applying it. Thanks!
@CLeovison
@CLeovison Жыл бұрын
Hi kevin, can you recreate the navigation bar of twitter? Thankyou
@Grinel
@Grinel Жыл бұрын
this awesome very helpful
@denoww9261
@denoww9261 Жыл бұрын
Nice video! For the issue you were having with overflow:hidden and bottom: -1em, could you change overflow to overflow-x to solve this?
@KevinPowell
@KevinPowell Жыл бұрын
you'd end up with a scrollbar the other way, once you set an overflow in one direction, the other will switch to scroll
@eioluseyi
@eioluseyi Жыл бұрын
@@KevinPowell I've experienced this before. Why's that though?
@denoww9261
@denoww9261 Жыл бұрын
@@KevinPowell Interesting, I had no idea. Thanks!
@somewonderfulguy
@somewonderfulguy 7 ай бұрын
That's seems great, however I'm going to stick to JS solution because it doesn't animate nicely on rapid hovering between elements and changing underline position with focus-visible using keyboard - it can be done extremely fast and so it hurts animation in this solution. But nevertheless, doing things with :has is amazing!
@meowzhin
@meowzhin Жыл бұрын
I used to hate CSS because I was ignorant. Now I love it, but I'm still ignorant. :D Tailwind is awesome for doing things fast without leaving the html. It does sort of pollute the code but I'm having so much fun doing things. Your channel is also helping to understand some really hard concepts on which I was grasping to follow. Nice job!
@dportalesr
@dportalesr 5 ай бұрын
Im assuming the full video is still in the works?
@Xeratas
@Xeratas Жыл бұрын
Why are you always using tags to define your navigations? I only rarely come across this. KZbin doesn't use it and i honestly can't remember when i last used a for a navigation. Just curious why you use this over something else
@skywizard3319
@skywizard3319 Жыл бұрын
semantics
@KevinPowell
@KevinPowell Жыл бұрын
Because it's a list of links 🙂 YT doesn't use it for the tabs, but they're tabs so it makes sense. I explained why I used them in that video though, and unless you're making web apps with more if a menu than a navigation, lists are very much the standard practice. When the nav element came around there was some talk of dripping lists and just putting links in the nav, and you will find that in the wild, but it's generally considered best practice to use a list for accessibility reasons. I have seen an argument against it, and it's something I want to dive into more, but basically everything I've looked into has backed using a list, except for one very small case study that I've seen
@rumbazumba3189
@rumbazumba3189 Жыл бұрын
Could this be done with transform origin instead, I think that would simplify the code a bit, instead of using the translate you just scale the x with different origins respectively. Could be paired with cubic-bezier for the transition to eliminate that unwanted scroll across all buttons a little.
@QwDragon
@QwDragon Жыл бұрын
Very cool! But maybe it could be done in a better way via display: subgrid?
@KevinPowell
@KevinPowell Жыл бұрын
Care to elaborate how subgrid might help here? I'm genuinely curious, but I can't think of how I'd do it.
@eioluseyi
@eioluseyi Жыл бұрын
​@@KevinPowellI'm curious too.. I'm hoping commenting here would help me get notified when the response comes
@juan9982
@juan9982 3 ай бұрын
Can someone explain me why its not neccesary to use the ::after when he implemented the custom properties? I don't get it
@elson_correia
@elson_correia Жыл бұрын
super cool and i learned new tricks. what if you had a span element as the bottom bar and used hover on li to move it around? would it be simpler?
@KevinPowell
@KevinPowell Жыл бұрын
Same thing, but without needing to add anything to the html 🙂
@RAJARAMAN005
@RAJARAMAN005 Жыл бұрын
Sir I have a doubt how to creat a website that have a option of selecting particular languages example I created a ott web site that has a multiple audio language in that video so how the user select a particular audio please help me 🙏
@oliver139
@oliver139 Жыл бұрын
0:36 What I think is..WTF!?🤯
@liski12
@liski12 Жыл бұрын
If you want to support the "fast" hovering, couldn't you add a rule that adds a really fast full width scale when the "nav li" is surrounded?
@KevinPowell
@KevinPowell Жыл бұрын
Yeah, if we did that with the starting animation it would help, but I don't think we could get it to be perfect.
@MrJettann
@MrJettann Жыл бұрын
Kevin thanks a lot for your work! Can you tell us please which of the new css features are ready for production? Such as layers, containers, new css units, etc, even if they have pretty good browser support, it's not really obvious what can I use now In production
@KevinPowell
@KevinPowell Жыл бұрын
Very dependant on your own analytics, to be honest. I feel safe using some as a progressive enhancement, like I did here with :has() where we have a perfectly fine fallback. Then I don't even need to worry about browser support. For @layers, which is above 90% now, and container queries, which is aroundd 87%, I wouldn't use them on a general, public facing page... but a personal project, might as well! or something specifically for devs... maybe I would! If you have analytics for a given project it can really help too, and usually the best thing to rely on, and then also deciding what the cutoff is for how well supported something should be.
@seifnaguib1
@seifnaguib1 Жыл бұрын
Can you pleeease do one that IS perfect with Javascript?
@LoveSpongez
@LoveSpongez Жыл бұрын
What did you use to quickly comment out the line on 10:28 ?
@KevinPowell
@KevinPowell Жыл бұрын
Ctrl + / or cmd+ / on a mac
@alexandryurkov9168
@alexandryurkov9168 Жыл бұрын
Nice👍
@mamadoumar3060
@mamadoumar3060 Жыл бұрын
really didn't know how to select the precedent element of an element. That's awesome ! but i am not sure that i really understand the principle. By the way, is it possible to select the parent of a selected element: i mean, if i have a paragraph containing a link, then if i select the link first, like link:hover, can i get access to the paragraph to modify for exemple the color of it when the link is hovered.
@KevinPowell
@KevinPowell Жыл бұрын
That's what :has() is for :D (just be careful with browser support). So you could do p:has(a:hover)... so it selects a paragraph if it has a link inside, being hovered on.
@Iskael
@Iskael Жыл бұрын
awesome
@waseemusman421
@waseemusman421 Жыл бұрын
Great
@JaGaNezhil
@JaGaNezhil Жыл бұрын
Super❤
@TechBuddy_
@TechBuddy_ Жыл бұрын
I am excited about has but this is not it we need cursor position or something similar in native css to achieve better ux
@KevinPowell
@KevinPowell Жыл бұрын
Totally agree that it's a bit limited, and using JS would probably be for the best if you really wanted to use this type of effect in production, but still a lot to learn from building it out :D
@TechBuddy_
@TechBuddy_ Жыл бұрын
@@KevinPowell yeah
@lasindunuwanga5292
@lasindunuwanga5292 Жыл бұрын
Can you please increase your volume
@md-gy7gu
@md-gy7gu Жыл бұрын
Unfortunately the hover effect doesn't work in mobile which is where most people are viewing web content these days 😢
@RondellKB
@RondellKB Жыл бұрын
how can you do this from start to finish without missing a beat?
@KevinPowell
@KevinPowell Жыл бұрын
Editing 😂
@RondellKB
@RondellKB Жыл бұрын
@@KevinPowell lol, good to know.
@kjhunkler
@kjhunkler Жыл бұрын
Where have you been all my life?
@GiorgiKavtaradze-cy1ye
@GiorgiKavtaradze-cy1ye Жыл бұрын
👏👍
@clarence9527
@clarence9527 Жыл бұрын
so difficult video.
@Bean-kw2xp
@Bean-kw2xp Жыл бұрын
friend and friends
@dasten123
@dasten123 Жыл бұрын
oh great, it's using has :/ I can't use it because of damn firefuck
@KevinPowell
@KevinPowell Жыл бұрын
I talk about making a fallback at the end for FF, or if you look at the pinned comment, there's a clever solution that doesn't use has :)
@dasten123
@dasten123 Жыл бұрын
@@KevinPowell I can't use that cause all my users use Firefox^^ but thanks for pointing out the codepen link
@themarin1992
@themarin1992 Жыл бұрын
thx man
@TheBoysMemes123
@TheBoysMemes123 Жыл бұрын
awesome
Subgrid & Container Queries change how we can create layouts
21:08
Kevin Powell
Рет қаралды 75 М.
5 super useful CSS properties that don't get enough attention
16:23
Kevin Powell
Рет қаралды 145 М.
OYUNCAK MİKROFON İLE TRAFİK LAMBASINI DEĞİŞTİRDİ 😱
00:17
Melih Taşçı
Рет қаралды 11 МЛН
Brawl Stars Edit😈📕
00:15
Kan Andrey
Рет қаралды 49 МЛН
Je peux le faire
00:13
Daniil le Russe
Рет қаралды 22 МЛН
Top 10 CSS One Liners That Will Blow Your Mind
13:34
developedbyed
Рет қаралды 957 М.
Getting started with CSS nesting
27:14
Kevin Powell
Рет қаралды 72 М.
The New dialog HTML Element Changes Modals Forever
12:09
Web Dev Simplified
Рет қаралды 587 М.
Create a Direction Aware Hover Effect Using CSS :has() Selector
10:25
Learn flexbox the easy way
34:04
Kevin Powell
Рет қаралды 708 М.
The problems with viewport units
13:23
Kevin Powell
Рет қаралды 362 М.
Learn CSS Grid the easy way
37:04
Kevin Powell
Рет қаралды 909 М.
OYUNCAK MİKROFON İLE TRAFİK LAMBASINI DEĞİŞTİRDİ 😱
00:17
Melih Taşçı
Рет қаралды 11 МЛН