create React JS responsive Navbar From Scratch In Hindi 2021 | Free Code

create React JS responsive Navbar From Scratch In Hindi 2021 | Free Code

Thapa Technical

3 года назад

209,470 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@NeerajKrGupta-ys2ey
@NeerajKrGupta-ys2ey - 21.10.2023 06:27

Content is super but your every video is forcing to watch some other video, please don't add some part of video from others video.

Ответить
@kiranjagdale-bd9dc
@kiranjagdale-bd9dc - 18.10.2023 16:18

Thanks it is very helpfull

Ответить
@LalitUK1988
@LalitUK1988 - 05.10.2023 07:38

pageke link to lagaye nahi

Ответить
@user-kt4nt3ov5c
@user-kt4nt3ov5c - 14.09.2023 13:19

bosdike \react me a tag kon likhta he

Ответить
@amitpatel0716
@amitpatel0716 - 06.08.2023 05:26

Bhai you are nice but i do no like your videos because. we want to learn something from you. you already complete karke rakhte ho. so i don't like you.

Ответить
@5minutestalk
@5minutestalk - 31.07.2023 15:15

I thought I'll learn react instead of writing these markups... anyway..

Ответить
@user-ju6nd1zs5h
@user-ju6nd1zs5h - 29.07.2023 12:17

bhai voh css wla part achhese explain krna chahiye tha...

Ответить
@anandgomaskar2210
@anandgomaskar2210 - 04.07.2023 14:20

thanku so much upload this video

Ответить
@shivanighadge9899
@shivanighadge9899 - 17.06.2023 10:35

Thank you for your video. It was really helpful for a beginner like me to understand.🙂

Ответить
@CS_HimanshuVishwakarma
@CS_HimanshuVishwakarma - 27.05.2023 09:58

Is it okay to make a website like this in react

Ответить
@harshil178
@harshil178 - 18.05.2023 10:03

achha

Ответить
@samarscript5824
@samarscript5824 - 17.05.2023 13:33

what do I need to do if need to add side drawer from left side instead top drawer on mobile mode ?

Ответить
@mgp1964
@mgp1964 - 11.05.2023 11:11

Very good sir i need these techniques for my react learning

Ответить
@sscreasoning007
@sscreasoning007 - 04.05.2023 15:57

Abe phone ki liye navbar explain nahi Kiya

Ответить
@S.Karthik140
@S.Karthik140 - 01.05.2023 14:59

next level 🔥

Ответить
@steverogers1657
@steverogers1657 - 10.04.2023 11:44

free code kehkar paise maang raha hai

Ответить
@lubnaarora4946
@lubnaarora4946 - 09.04.2023 15:07

Great Explanation of the concepts. Keep it up

Ответить
@Earnmoneywithgaurav
@Earnmoneywithgaurav - 28.03.2023 20:01

Can anyone tell me how to set image as logo in react navbar

Ответить
@jafarshaikh8463
@jafarshaikh8463 - 11.03.2023 09:50

Toggle route hone par nav hide nahi ho rha hai

Ответить
@majidaziz428
@majidaziz428 - 23.02.2023 11:18

bhai adha ganta to tum please mujhe follow krdo me laga detay ho

Ответить
@piyushpanchariya2277
@piyushpanchariya2277 - 17.02.2023 18:46

How to run project

Ответить
@suryagalib3652
@suryagalib3652 - 17.02.2023 11:42

how i get css from ur websites, can explain some one??

Ответить
@rakshithjai4471
@rakshithjai4471 - 15.02.2023 17:11

what is shortcut for that flower bracket commenting

Ответить
@sid.26
@sid.26 - 20.01.2023 19:16

//App.js
import NewsSec from "./News/NewsSec";
import ScoreSec from "./ScoreSec/ScoreSec";
import Menu from "./Sidebar/Menu";
import "./styles.css";
import { GiHamburgerMenu } from "react-icons/gi";
import React, { useState } from "react";

export default function App() {
const [showMediaIcons, setShowMediaIcons] = useState(false);

return (
<div className="App">
<div className="head">
<div className="navicon">
<a
href="/"
onClick={() => {
setShowMediaIcons(!showMediaIcons);
}}
>
<GiHamburgerMenu />{" "}
</a>
</div>
<div className="logo">Project</div>
<div className="weather">weather section</div>
</div>
<div className="main">
<div className="nav-section">
<Menu classes={showMediaIcons ? "mobile-view navbar" : "navbar"} />
</div>
<div className="news-section">
<NewsSec />
</div>
<div className="score-section">
<ScoreSec />
</div>
</div>
</div>
);

//Menu.js
import React from "react";
import "./Navbar.css";

const Menu = (props) => {
return (
<>
<div className={props.classes}>
<ul>
<li>Home</li>
<li>News</li>
<li>Sports</li>
<li>Weather</li>
<li>About</li>
</ul>
</div>
</>
);
};

export default Menu;


For testing I tried changing the nav colour to Red. But on clicking Hamburger, colour changes to Red and reverts back to normal

Ответить
@UdayYadav-he8lu
@UdayYadav-he8lu - 07.01.2023 12:05

thanks a lot bhai

Ответить
@hsentertainment3078
@hsentertainment3078 - 01.01.2023 18:01

apna phla sa css q likhi hwi hain or huma kasa pta chla ga ka apna css pa kiya kam kia hwa hain

Ответить
@radhekrishna007.
@radhekrishna007. - 22.12.2022 16:05

Boom guys 😁

Ответить
@jainilpatel8920
@jainilpatel8920 - 09.12.2022 17:12

Css kidhar he bhai
Css ki link kidhar he

Ответить
@JyothiS-qi4tw
@JyothiS-qi4tw - 27.11.2022 16:06

Sir i have a doubt, i am working on next.js project .... can i install the react icon , if i want to use certain icons in my next js project.....

Ответить
@PENCILARTAbhishekHimanshu
@PENCILARTAbhishekHimanshu - 24.11.2022 19:24

boom guys

Ответить
@AnuragKumar-ex9ye
@AnuragKumar-ex9ye - 06.10.2022 18:21

is this React video or just simple HTML CSS video because in this long video i didn't see use of react Routes. If i just have to create and style navbar i can do that using normal HTML CSS but if you making React video then do the dynamic one. There is no use of React-Router-Dom or anything.

Ответить
@rababfatima5801
@rababfatima5801 - 20.09.2022 16:42

Please add sub menus listing in navbar

Ответить
@rajatgoyal3698
@rajatgoyal3698 - 13.09.2022 22:37

NAvbar toh badhiya h... Par iske momos...Inshallah ek number

Ответить
@fatematuzzohraakhi6940
@fatematuzzohraakhi6940 - 11.09.2022 22:24

u r awesome man....Your videos are reallyyyyy damn good. I can understand every bit of your explanation.

Ответить
@nicetomeetugaming7024
@nicetomeetugaming7024 - 28.07.2022 16:26

Good video!

Ответить
@bimalshrestha2354
@bimalshrestha2354 - 14.07.2022 08:02

i think responsive part should have been explained in detail as per the video title but u explained other component in detail insteed

Ответить
@karanbisht7814
@karanbisht7814 - 30.06.2022 14:33

aap padate bhut acha ho pr source code nhi dalte nah wahi bekar lgta h

Ответить
@adarshjose1607
@adarshjose1607 - 22.06.2022 07:57

Half of of the code are not there and explained, otherwise good

Ответить
@alomgirhossain4702
@alomgirhossain4702 - 08.06.2022 22:19

thanks

Ответить
@ritikasharma52
@ritikasharma52 - 14.04.2022 22:12

Please update the code - like if we click outside the box it should close automatically

Ответить
@hasanuzzamananuz8270
@hasanuzzamananuz8270 - 12.03.2022 13:33

Awsome brother.....................

Ответить
@mehulgupta8218
@mehulgupta8218 - 11.03.2022 08:41

Awesome helped soo much 🙏🏼

Ответить
@amalangaonkar75
@amalangaonkar75 - 09.03.2022 18:26

You should show here how you used css

Ответить
@amazing_492
@amazing_492 - 08.03.2022 20:00

Your tutorial video is very awesome

Ответить
@surajsdeveloper
@surajsdeveloper - 01.03.2022 08:29

Nav bar ko router se kyu nhi banaya

Ответить
@md.rakibulislam8064
@md.rakibulislam8064 - 23.02.2022 13:07

Great. thank you so much

Ответить
@MegaNagesh007
@MegaNagesh007 - 16.02.2022 08:09

Bhai speed thoda Jada hogaya

Ответить
@gold8780
@gold8780 - 01.02.2022 14:11

Best explanation so far I've found. Simple n easy to follow 😊

Ответить
@subhu143
@subhu143 - 24.01.2022 09:57

Congratulations for 400k

Ответить