I have been attempting to implement a slide out menu from a span within my navigation bar, but I am encountering some challenges. Despite searching on Google, I have not been able to find the solution I need. Here is the code I am currently using:
<div style="background-color: #002F33; min-height:50px;">
<span class="navIcon" style="width: 50px; border-right-style: solid 1px #939393;"><img src="assets/images/icon_hamburger.png"></span>
<div>
<a href="#Link1">Link1</a>
<a href="#Link2">Link2</a>
<a href="#Link3">Link3</a>
</div>
<span style="color: #ffffff; font-size: 22px; padding-left:20px; padding-top: 21px;">Moneyball Tool</span>>
</div>
My goal is to have the menu fly out over the content below when the span image is clicked. I'm struggling with this implementation and would greatly appreciate any assistance you can provide.