Skip to content
Advertisement

sidebar navigation text not smooth while transition

i try to change css but not work for text short text is ok but i have to put long paragraph when click it not smooth while transition working i use template from w3school, i want text show up smooth like button or short text please advise me how I should use it to remember for next time i can help in community if i saw someone ask like me thank you.

JavaScript
JavaScript
JavaScript

Advertisement

Answer

  • You don’t need two separate JavaScript functions. Only one called toggleNav
  • Use Element.classList.toggle() to toggle a CSS class
  • Don’t animate the width. Use transform: translateX(-100%) to hide the Nav, and translateX(0%) to show (open).
  • Don’t use links if you actually want buttons. Links (Anchors) are used to navigate
  • Don’t use inline on* JS attributes and style attributes

JavaScript
JavaScript
JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement