Kako stvoriti odgovarajući klizni izbornik

Vodim blog pod nazivom Learnersbucket.com, gdje pišem o ES6, podatkovnim strukturama i algoritmima kako bih pomogao drugima da razbiju kodiranje intervjua. Pratite me na Twitteru radi redovitih ažuriranja.

Kad sam dizajnirao svoj blog s pristupom koji je bio prvi za mobilne uređaje, odlučio sam držati svoj navigacijski izbornik na bočnoj traci odvojenim u donjem desnom kutu. Nije potrebno ljepljivo zaglavlje i korisnik može pročitati sve u punoj visini.

Ovo je jednostavna verzija izgleda mog mobilnog izbornika.

Evo kako možete stvoriti vlastiti prilagodljivi izbornik za navigaciju na bočnoj traci.

Pregled

Prije nego što prijeđemo na dizajniranje jelovnika, zamislimo koje nam komponente trebaju.

  • Hamburger ? tipka koja će odrediti kako / h zamisliti klizni izbornik.
  • Animacija na gumbu za hamburger koja predstavlja trenutno stanje jelovnika.
  • Izbornik za bočnu navigaciju.

Kako će se bočni navigacijski izbornik prebacivati ​​na klik izbornika hamburgera, možemo ih držati zajedno u jednom spremniku.

Ovisnosti

Volim koristiti jQuery za DOM manipulaciju jer smanjuje količinu koda koji trebam napisati.

Gumb za hamburger

HTML struktura

Postoji jednostavan trik za stvaranje jelovnika s hamburgerima.

Koristit ćemo a iv> w ith a .hamburger class to create the hamburger button wrapper. Then we will place three s to create the layers of the hamburger.

Designing the hamburger button

Now that the HTML structure for our button is ready, we need to design it to make it look like a hamburger. While designing, we need to keep in mind that we have to provide the animation for open & close when the user clicks on it.

As we are creating a fixed dimension hamburger button, we are going to provide fixed dimensions to the wrapper.

  • We have created a fixed parent .hamburger{position:fixed} to place it wherever we want on the screen.
  • Then we have designed all the an>s as small rectangular boxes with position:absolute.
  • As we need to show three different strips we have changed the top position of the 2nd span .hamburger > span:nth-child(2){ top: 16px; } & 3rd span .hamburger > span:nth-child(3){ top: 27px; }.
  • We have also provided transition: all .25s ease-in-out; to all the spans so that the change of their properties should be smooth.

Opening & Closing hamburger button with jQuery

Whenever the hamburger button is clicked it will toggle an open class to it. We can now use this class to add the opening & closing effect.

.hamburger.open > span:nth-child(2){ transform: translateX(-100%); opacity: 0;} will slide the middle strip of the hamburger to the left and make it transparent.

.hamburger.open > span:nth-child(1){ transform: rotateZ(45deg); top:16px; } & .hamburger.open > span:nth-child(2){ transform: rotateZ(-45deg); top:16px; } will bring the first and last span to the same top position and rotate them to make an X.

Kudos ? we have our hamburger ? button ready, so let us create the side navigation now.

Responsive side navigation menu

HTML structure

We will create a simple navigation menu.

We used a nav element for creating the navigation menu and placed the links in ul.

Designing the navigation menu

I have created a full-screen side menu, you can change the dimensions according to your need. We are using > selector to avoid overwriting the style of other elements.

Now we have our navigation menu and hamburger button ready, so we can wrap them inside a wrapper to make them functional.

Sliding navigation menu

HTML structure

We have placed the hamburger button and navigation menu inside the .mobile-menu wrapper.

Designing the sliding navigation menu

We have updated the design a little by providing some property of the .hamburger to .mobile-menu making it fixed and made .hamburger relative to keep the an> design the same.

As there can be multiple navs, we have updated all the selectors .mobile-menu >nav as well to make sure we are pointing to the required elements only.

Making sidebar menu functional with jQuery

We now add our .open class to the .mobile-menu so that we can handle both the hamburger button and the sliding menu with a single change.

Our CSS for the animation is also updated accordingly.

Well done ??? we covered everything.

Check out the working demo here

Conclusion

This post was about a simple sliding menu. I tried to break it into different components so that you can use them independently.

Thank you for having patience while reading this. If you learned something new today then give some ?. Also, share it with your friends so that they can learn something new too.

That’s it, follow me on Twitter for knowledge sharing. I write about ES6, Nodejs, Data structures & Algorithms and full stack web development with JavaScript.

Originally published at learnersbucket.com on April 14, 2019.