I've referenced this video countless times for a variety of projects. Thank you for taking the time to put this together, you are a true hero!
@streetrat70503 жыл бұрын
Thank you so much for your contribution. I have spent far too long now trying to find an example that is simple, direct and to the point.
@jameslovell52013 жыл бұрын
Quick! Clear! Concise! An excellent tutorial, my friend!
@thearxlive Жыл бұрын
I dont usually comment on yt tutorials, but this is the only modal video I felt useful. Thankyou!
@gautambedi591 Жыл бұрын
This is exactly what I was looking for. Keep the good work going mate!
@ghislainmitahi25842 жыл бұрын
really, i'm so happy to hear you again, i usually cach your french tutorials, this modal is all i wanted 🙏👌👌
@johntalatala6804 ай бұрын
I was looking something like this to insert into my project, Merci infiniment monsieur pour cette contribution. Vous etes magnifique!
@lightsabercatspowpow Жыл бұрын
Very very great video. You simplified this down to clean concise code that was very easy to follow. The css styling being done ahead of time helps a lot aswell because this video was how to make it work not how to make it pretty so thanks for getting that done outside the actual content! 10/10
@alienfunbug3 жыл бұрын
Best modal video on youtube (or at least out of like 10 that I compared it with).
@eskimo60973 жыл бұрын
Thank you, you explained it so simply! Also, your accent is very cool :D
@TheWebSchool3 жыл бұрын
Glad it helps ! The French accent never leaves ✌️
@turyahabwamark82 Жыл бұрын
Beautifully done... Using basic concepts, in a Clear and concise way bro
@diegoguatemala5287 Жыл бұрын
I have been referencing to this video many times, thanks man
@tadeuvieira319 Жыл бұрын
Straight to the point. Perfect! You just got a follower.
@Miguel_ECL4 ай бұрын
Great quick & clear explanation! Thanks!
@sumondatta65952 жыл бұрын
You are superb!!! easily discuss and understandable code. Thank you so much.
@juelmapereira427710 ай бұрын
Dude, this is so nice
@danielmarx10563 жыл бұрын
Thanks for this video, really nice and simple explanation
@TheWebSchool3 жыл бұрын
Glad it helps, and nice pic in front of the Hungarian Parliament mate ✔️
@melisandem1735 Жыл бұрын
Thanks, just what I was looking for ! Very Helpful.
@ashwinpatidar2878 Жыл бұрын
It is very helpful video for building Modal using Vanilla CSS. Thanks.
@kamichikora60352 жыл бұрын
As always, great work. Straight to the point
@ABC-el3ql3 жыл бұрын
WOW!! Thank you so much from S.Korea!!
@MrACrazyHobo3 жыл бұрын
Very easy tutorial, thanks for the source code!
@NeganSportNews Жыл бұрын
An excellent tutorial! Thank you so much.
@fancybeing12962 жыл бұрын
iam always scared to code an overlay but this video literally helped me in 5 mins
@inescherif5385 Жыл бұрын
short & clear ! thank u so much for that
@Greenlight1233 жыл бұрын
Thanks. That is exactly what i was looking for. A Point of Reference
@TheWebSchool3 жыл бұрын
Great 🔥
@AdarshYadav-cf9be5 ай бұрын
Thankyou so much brother i was suffering from so many problems thankyou so much...😢
@User-nn9uw2 жыл бұрын
So simply, thank you dude
@s1sko7 Жыл бұрын
Excellent!! :) But 2 things : 1 ) Why bother with State when you can just pass an "active-modal" class to body and handle everything with CSS? 2) Studies shows that a lot of people would click on the previous button of their browser when modal shows up. So we should prevent that maybe with a new page direction. Thoughts?
@FleekGaming24116 ай бұрын
Thank You It's working!
@diamondsky66052 жыл бұрын
Wow même en anglais j'ai reconnu ta voix direct 😂 Je savais pas que tu avais une autre chaine
@mohammedhassan-xc7nh Жыл бұрын
so short and so clear Im Arabian but I understood so much thx bro
@azashik56783 жыл бұрын
Nice Tutorial Sir . Quick And clear
@ortigaliyevmuhammadjon11 ай бұрын
Thanks bro it was really useful 👍👍👍
@chiomaubaezuonu38752 жыл бұрын
You're amazing
@samriddhabajpai18462 жыл бұрын
Thank you for the easiest explanation!!
@iafofkhadze46282 жыл бұрын
wow u made this super easy tho
@herbertrichard456111 ай бұрын
Very good tutorial, thank you ^^
@ziyaulrana18403 жыл бұрын
Very simple and easy method Thanks for motivation
@TheWebSchool3 жыл бұрын
I appreciate ✌️
@souravdutta57033 жыл бұрын
wow!! you made creating modal so simple!!
@BBoyXy3 жыл бұрын
Thank you, keep up the good work
@ritchieways94952 жыл бұрын
Thanks so much. You saved me
@woochille74712 ай бұрын
Super helpful thanks!
@0xBK2012 жыл бұрын
Thanks for this.
@nehabhole1 Жыл бұрын
Great, quick tutorial for building modals however doesn't address event propagation. I build a form inside a modal and on click it closes the form.
@IroshanaRavishan4 ай бұрын
Really helpful...! Thank you
@DS-qz2gu Жыл бұрын
When I learned React, I learned that when you modify the current state to set a new state (e.g., negating a value to toggle boolean state), there’s a specific syntax to ensure that you get the current state instead of risking using a previous version of the state. Instead of this: setModal(!modal); You’d use this: setModal((prevModal) => !prevModal); Is this true? Is it just not important in this use case?
@maciejkrogulski9216 Жыл бұрын
good tutorial, but how can You animate this modal? Especially closing modal?
@ice12328 Жыл бұрын
Excellent Example
@martinalvarez4663 Жыл бұрын
gracias perritoo sos crkack
@Jonsy2 жыл бұрын
This is great!! thank you so much
@polestudiosaroundtheworld3 жыл бұрын
Thank you, the tutorial is really clear! Just what I need.
@TheWebSchool3 жыл бұрын
Glad to help
@younesmansourbokhtache1182 жыл бұрын
Thank you so much, the tutorial is really clear
@EvGen-e2d Жыл бұрын
Ok the problem is what if my modal bigger height then viewport? overflow-y: scroll; doesn't help because it has different scroll and scrolls much slower then body scroll.
@prasathj7436 Жыл бұрын
Excellent one. Thanks.
@kamamedia35353 жыл бұрын
thanks man, really nice n cool to implement
@lucianoaraus8956 Жыл бұрын
Nice tutorial man!
@mihaibalan19172 жыл бұрын
This helped me a lot. How can I make the content of my modal scrollable? (I have a photo gallery in the modal)
@ralpha9735 күн бұрын
Est ce que t'es français ? Parce que t'as vraiment un accent
@nicudomenti52352 жыл бұрын
Nice video, thank you!
@samuelsonowo6707 Жыл бұрын
I have a target value to display but when i click submit the value no longer display. What can i do?
@phoneringhtone9711 Жыл бұрын
thank you my friend
@nagireddypanditi64293 жыл бұрын
Great tutorial!
@TheWebSchool3 жыл бұрын
👍👍
@gooddeveloper11 ай бұрын
it's really cool
@harshgoyal7114 Жыл бұрын
Thankyou for your help
@ambitionhut2 жыл бұрын
This doesent work sadly on my end. The idea of creating both the button and modal in the same component only works if its like you example. But what if the button is on the navbar? when I do it, the modal pops up inside the navbar..
@TheWebSchool2 жыл бұрын
Hey, yeah it was for the purpose of the video. Most of the time we use the context API or redux or whatever state manager to handle the triggering of a modal.
@aanchaltripathy5985 Жыл бұрын
how can we delay the pop up message by a few milliseconds?
@thehitlist40464 ай бұрын
Please how do you enable intellisense like when you did div.modal
@ashadulmridha42653 жыл бұрын
Wow man it's very Cool
@gilbertorogel813 жыл бұрын
Help, i have the exact same code and modal is not showing :s
@TheWebSchool3 жыл бұрын
Source code is in the description my friend
@rhul0017 Жыл бұрын
so which is the best method, using portals or using this approach?
@daviddeltoro406 Жыл бұрын
Any way to make it so that it fades in and out smoothly?
@attilakovacs43643 жыл бұрын
ty great video,one question though,how do I enable scrolling in the modal? I added overflow-y: auto or scroll but it doesnt work.
@attilakovacs43643 жыл бұрын
nevermind I'm stupid,I added it to the modal-content section not in the '.modal' section,now it works!
@vincebraca7141 Жыл бұрын
how do you run that modal.js on terminal? be cause i use npm start but i can't start it
@ankushmalik8257 Жыл бұрын
On clicking Open button, the modal is not opening. Can anyone please suggest?
@Teodorant12 жыл бұрын
I downloaded the project and copied the components file and put it into my SRC file, and imported it the same way into my app.js, I couldn't get it to work. Please help!
@surjeetsingh58212 жыл бұрын
mine too not working
@slamanaim1837 Жыл бұрын
thank you it is what i want to know how to create a modal that is shown when i login my bank account. it contains points that turn and text please wait before showin my bank receipt
@worldclasscode18472 жыл бұрын
Great video ! :)
@worldclasscode18472 жыл бұрын
Contact me
@fola_azeez7 ай бұрын
thank you so much bro bro
@augischadiegils.51092 жыл бұрын
❤️❤️❤️❤️
@EminoMeneko3 жыл бұрын
Super bien expliqué mais chez moi ça ne crée pas la modale. React dev tools me permet de voir que le state toggle mais rien ne s'affiche. En fait c'est parce que je part des templates depuis le site de Bootstrap et que le code ne marche pas tout à fait de la même manière. En tout cas ça a répondu à la question que je me posais.
@TheWebSchool3 жыл бұрын
Thanks, We speak English here :)
@henzelsargsyan43022 жыл бұрын
Thanks a lot!
@PROTECHRAHUL2 жыл бұрын
how can we do it on onload
@julien255853 жыл бұрын
How can i fix this error: "./src/App.js Module not found: Can't resolve './Components/Modal/Modal' in 'C:\Users\user\Desktop\Test\Test\src'" i use this import: "import Modal from './Components/Modal/';"
@TheWebSchool3 жыл бұрын
This is mainly a problem with the path, check the name of your paths
@julien255853 жыл бұрын
@@TheWebSchool Maybe i dont understand bcs im kinda new to do programming. I use a relative path, it should be okay then or not? Actually i have no clue how to fix this :/
@hamidrezarahimi66513 жыл бұрын
If your folders structure is the same as what was explained in the video, you should add the Component file to your import statement as well. With that being said, you have to update your import to: import Modal from "./Components/Modal/Modal";
@nischithr54282 жыл бұрын
Thank You! ☺☺
@matiasrocca47022 жыл бұрын
Hey!! Im having trouble with the overlay toggle on the overlay div. It is also executing the function when clicking inside the popup component (which kinda makes sense, since the component is within the overlay div). Does anybody know how may I fix this?
@matiasrocca47022 жыл бұрын
Im not being able to call the function only while clicking the overlay (outside part of the box), im also calling it when clicking on the inside. This is a problem, because im trying to fill a form inside the component
@dev_catM3 жыл бұрын
Top!👍
@GameAnimevietsub Жыл бұрын
not working now :((
@venkateshkumar9600 Жыл бұрын
Thank you
@guntacaytar11 ай бұрын
why do u say 'hoviley' insted of overlay
@ora_ukFelix Жыл бұрын
Source Code Please
@Boltkiller965 ай бұрын
0:29 and we are going to fk us
@ashwinumbarkar6625 Жыл бұрын
Thanks .
@TheNarstonerz2 жыл бұрын
Sweet french accent
@khan.hassan3 жыл бұрын
Thanks 👍
@sandeepdhungana66573 жыл бұрын
Great
@mega.pe4enka1473 жыл бұрын
красава
@guntacaytar11 ай бұрын
there are 4 big mistakes. how dare u upload a video. u are junior level
@guntacaytar11 ай бұрын
what is this heavy accent. it is hard to listen . ufff so bad.