How To Make Toggle Button Using HTML & CSS

Поделиться
HTML-код
  • Опубликовано: 24 фев 2023
  • In this video i show you how to make a toggle button with checkbox using html & css. Or you can say in this video we are going to design checkbox or making custom checkbox.
    For source code visit 👇 :
    www.maketechstuff.com/
    You may have to search on website ('toggle button').
    ______________________________
    Related Videos :
    Toggle button for dark and light mode.
    • Dark and Light Mode To...
    Animated toggle button.
    • Toggle Switch Using HT...
    Website with dark and light mode.
    • How To Create Website ...
    Custom rounded checkbox
    • How To Create Custom C...
    Sidebar menu close and hide using only html and css
    • Sidebar Menu using onl...

Комментарии • 60

  • @tanjirnu
    @tanjirnu 3 месяца назад +2

    Sir,
    we are with you . keep doing what are you doing.......

  • @dynashiftgaming2861
    @dynashiftgaming2861 7 месяцев назад +4

    full support man. 🖤

  • @matsang2008
    @matsang2008 6 месяцев назад +4

    Nice. You made it so easy. No more blah blah and straight forward. Thanks

    • @Maketechstuffs
      @Maketechstuffs  Месяц назад

      Your welcome

    • @Nexaman18
      @Nexaman18 24 дня назад

      @@Maketechstuffs L easy bruuuh no explation just copy paste

  • @edrisssafi5796
    @edrisssafi5796 3 дня назад

    Very nice

  • @BlueAngleYt
    @BlueAngleYt 4 месяца назад +1

    Amazing

  • @jvenkatonline
    @jvenkatonline Месяц назад

    Simple and clear. I have seen multiple tutorials for this functionality, but this is very simple and easy-to-understand logic without any extra steps. Thanks.👍

    • @Maketechstuffs
      @Maketechstuffs  Месяц назад

      Your welcome

    • @jvenkatonline
      @jvenkatonline Месяц назад

      @@Maketechstuffs particularly you keep the checkbox till the last minute. finally, you hide it (display: none). I like that approach. without any explanation, I could understand what you were doing.

  • @chrisazuaje892
    @chrisazuaje892 11 месяцев назад +1

    Great video!

  • @LuisVZMusic
    @LuisVZMusic Год назад +2

    good

  • @sarahpires2251
    @sarahpires2251 2 месяца назад

    Perfect

  • @HushCode
    @HushCode 4 месяца назад

    Sympa 👍

  • @amandacolares7501
    @amandacolares7501 11 месяцев назад +1

    great tutorial

  • @S-Lomar
    @S-Lomar 9 месяцев назад +2

    This guy is the best 😍😍🥰🥰🥰😍🤣😂😂🤪🤪🤪😂😂😂😂

    • @gbbarn
      @gbbarn 23 дня назад

      Yeah, thanks chatGPT lol.

  • @mikhaildolgov
    @mikhaildolgov Год назад +2

    👍

  • @S-Lomar
    @S-Lomar 9 месяцев назад +1

    Well done 🥰🥰🥰🥰🥰😍🥰🥰🥰🥰🥰🥰😍🥰👍👍🥰🥰🥰🥰🥰🥰🥰😍🥰🥰🥰🥰🥰

  • @introvert456
    @introvert456 Год назад +10

    You could easily make it by embedding online icons , but it was a fun that you totally made it by yourself ❤️

    • @d.s.h6629
      @d.s.h6629 Год назад

      do you mean icons

    • @introvert456
      @introvert456 Год назад +1

      @@d.s.h6629 oh sorry i wrote fonts by mistake

    • @S-Lomar
      @S-Lomar 9 месяцев назад

      😍😍😍😍😍😍😍😍😍😍😍😍😍😍😍

    • @S-Lomar
      @S-Lomar 8 месяцев назад

      😂😂😂😂😂😂😂😂😂😂😂😂😂😂

    • @introvert456
      @introvert456 8 месяцев назад

      @@S-Lomar waddup?

  • @chrystnx
    @chrystnx 11 месяцев назад +1

    lindo

  • @0xGrowth
    @0xGrowth Месяц назад

    What VsCode extension are you using that reflects the changes you're making to the code directly on the webpage?

  • @HariBalaKumarR.V
    @HariBalaKumarR.V 21 день назад

    Sir,I am newly learning html and css may I please know a proper road map(if you could provide) on how to master html and css or where to start and to end..

    • @Maketechstuffs
      @Maketechstuffs  21 день назад

      You can learn from many websites. (One name is w3schools.com).
      Important thing is you have to practise. By creating different forms, web page, websites, etc. Then you'll get the idea of designing.
      Means
      how i can make this element this side or that side.
      How i can make this element below another element.
      How can i make this element appear in the centre.
      How can i add border on the top and bottom of this element.
      How can i show this elements side by side or in a line, or in a row.
      How can i add bullet points in the list items.
      How can i make the extra elements to appear from second line if first line is full.
      , Etc.

  • @NadeemJohn-xu4lu
    @NadeemJohn-xu4lu 6 месяцев назад +1

    NADEEMJOHN

  • @priyadharshinis6039
    @priyadharshinis6039 Год назад +1

    How to set its button on the right corner please respond me

    • @Maketechstuffs
      @Maketechstuffs  Год назад

      Just replace the container class css
      .container{
      background-color: #fff;
      display: flex;
      float: right;
      }

  • @krstev29
    @krstev29 11 месяцев назад +1

    I just don't know why when I click on the button nothing happens, i need to hide the checkbox behind the button so if works, I think

    • @Maketechstuffs
      @Maketechstuffs  11 месяцев назад +1

      No it won't works.
      If you hide checkbox behind button then how you click checkbox. It possible when you set pointer event none to button. But then also it only works when you click on checkbox and its too small to not visible (as it behind the button).
      Thats why here used label tag once checkbox bind with button. Now you can place checkbox anywhere in page or even hide it.
      Now when you click on checkbox or button is equal to click on button(label) and checkbox.
      You'll find more information on website (search toggle on website).

    • @russellpawlett3564
      @russellpawlett3564 8 месяцев назад

      I had the same issue, I missed a step in the instructions . Make sure in the container you have
      -- I missed the id="check" which made the button not transition if clicked on

    • @Rudymaze
      @Rudymaze 8 месяцев назад

      hi guy i have all these in place but still no transition
      @@russellpawlett3564

  • @menephyl007
    @menephyl007 3 месяца назад

    wholl

  • @namesare4fools
    @namesare4fools Год назад +2

    trust me, if your priority is to build a product just use component library

  • @realjonav
    @realjonav Год назад +2

    hey! could you help me turn this into a darkmode button?

    • @Maketechstuffs
      @Maketechstuffs  Год назад

      You can add text(dark and loght mode) in front of toggle button and use this button as dark and light mode switch. And you can change design little bit.

    • @realjonav
      @realjonav Год назад

      @@Maketechstuffs i was asking if you knew how to actually make the button do a toggle where it would actually change the site to dark mode?

    • @Maketechstuffs
      @Maketechstuffs  Год назад

      Ok I'll make video on it.

    • @realjonav
      @realjonav Год назад

      @@Maketechstuffs okay i’ll be waiting! :)

    • @Arman-df4wo
      @Arman-df4wo 2 месяца назад

      ​@@realjonav what you can do is add a event listener to that checkbox [event "change"] inside that a callback function this will check if this checked box is checked or not if checked add a class to body where all the colours for dark mode are described

  • @ilTHfeaa
    @ilTHfeaa Месяц назад

    this doesn’t work if there’s multiple though

  • @oquangtai6889
    @oquangtai6889 Год назад +1

    how can i use this button after coding it done?

    • @Maketechstuffs
      @Maketechstuffs  Год назад

      You can use it as switch (dark and light mode, to on/off something, show & hide something etc... )
      you can use as setting in your software. For example if button is ON show something, if button is OFF hide something.
      Use as autosave functionality. if button is ON (checkbox is checked) autosave enable, if OFF(checkbox is unchecked) autosave disable. And in many other ways you can use.

    • @Maketechstuffs
      @Maketechstuffs  11 месяцев назад

      Yes! you can make toggle button functional with js.

  • @manashkamaldey520
    @manashkamaldey520 Год назад +2

    good

  • @NadeemJohn-xu4lu
    @NadeemJohn-xu4lu 6 месяцев назад

    NADEEMJOHN