JSFiddle - React, Tailwind, and code Playground
by nickadeemus2002
HTML
<nav>
<ul>
<li><a href="#main">Main</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#works">Works</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
CSS
body { background: #bbb; }
nav { display: block }
nav {
position: absolute;
top: 0;
right: 30%;
width: 300px;
height: 40px;
z-index: 950;
background: rgba(255,255,255,0.9);
-webkit-transition: left 0.5s ease, right 0.5s ease;
}
nav:hover {
right: 0;
left: 0;
width: auto;
height: auto;
}
nav ul { display: none; width: 100%; }
nav:hover ul { display: block; }