How to Create Responsive Animated Fullscreen Navigation Menu using HTML, CSS & JavaScript

Поделиться
HTML-код
  • Опубликовано: 22 мар 2020
  • In this video, I will show you how you can easily design / create responsive animated fullscreen nav / navigation menu using HTML, CSS and JavaScript.
    Code - bit.ly/3pIed5y

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

  • @xxxxxxx3357
    @xxxxxxx3357 2 года назад

    This tutorial just saved me and my internship. THANK YOU!

  • @shivarammuthukumaraswamy7164
    @shivarammuthukumaraswamy7164 3 года назад

    Amazing tutorial.Thank you.

  • @milkstorm4818
    @milkstorm4818 3 года назад +1

    LITTT THANK YOU FOR MAKING THIS TUTORIAL LIKED AND SUBBED

  • @innovativemind2009
    @innovativemind2009 3 года назад

    liked very much

  • @quachhai3429
    @quachhai3429 4 года назад

    Good skill

  • @thomvanlieshout
    @thomvanlieshout 3 года назад

    Really nice tutorial, I have only one problem. If I zoom in on my website the overlay shows and the screen becomes in my case pink (which I set as my background-color). Do you know how to fix this?

    • @Codingflag
      @Codingflag  3 года назад

      Please share your code on codepen

  • @rosanneross3507
    @rosanneross3507 3 года назад

    I did all the tutoriel right but when I did the JavaScript, it show me this error message about the showNav :" ' showNav ' is defined but never used. [no-unused-vars] ". I don't know what to do to correct this error. Can someone help me please? :)

    • @Codingflag
      @Codingflag  3 года назад

      Can you please comment down your code so that I can help

    • @rosanneross3507
      @rosanneross3507 3 года назад

      My script code is :
      function showNav() {
      document.getElementsByClassName("navigation")[0].classList.toggle("active");
      }

    • @Codingflag
      @Codingflag  3 года назад

      @@rosanneross3507 Please put HTML as well

  • @sebastianskowron5873
    @sebastianskowron5873 2 года назад

    Awesome tutorial, have one issue :( I can't change border-radius to something like 10px to be more square look than circle. !important doesn't work, tried everything that i know. Can You help me, my master? :D

    • @Codingflag
      @Codingflag  2 года назад +1

      You cant do it with clip-path. Here is small trick to achieve same. I have modified source code little bit.
      codepen.io/dsr/pen/yLbEORp

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

    write the code in the comment box don't get in the link

  • @huzzei1
    @huzzei1 3 года назад

    Is there a way to make the hamburger appear in the center of the screen instead of the right corner?

    • @Codingflag
      @Codingflag  3 года назад +1

      use below styles to center.
      position: absolute;
      top:50%;
      left:50%;
      transform:translate(-50%,-50%);

    • @huzzei1
      @huzzei1 3 года назад

      @@Codingflag Thank you so much

    • @jannisstefanis9671
      @jannisstefanis9671 2 года назад

      @@Codingflag where do i put the styles?