Encountering some challenges with the mobile menu on a website. The opening and closing animation of the background is functioning correctly, displaying the information as intended. However, when testing and clicking on one of the links, the animation simply closes without any further action. Additionally, struggling to get the close animation of the text to work properly.
I have included the codepen link for just the menu below.
<div class="circle"></div>
<div class="menu">
<ul>
<li><a href="turf-home.html">Products</a></li>
<li><a href="turf-about-us.html">About Us</a></li>
<li><a href="turf-contact-us.html">Get In Contact</a></li>
<li><a class="golf" href="golf-home.html">Home</a></li>
</div>
<div class="burger">
<div class="x"></div>
<div class="y"></div>
<div class="z"></div>
</div>
<div class="menu-circle">
</div>
... (the rest of the HTML content remains the same)