I'm trying to implement an animated hamburger menu with expandable buttons in the next level. While I know my code is far from achieving that, here's my progress so far: https://jsfiddle.net/TheBB23/hnsjym9u/
This code was borrowed from a website to give you a better idea of what I'm aiming for: https://jsfiddle.net/TheBB23/uw2jzge1/
I've hit a roadblock and would appreciate any assistance or guidance.
$('.circle-plus').on('click', function() {
$(this).toggleClass('opened');
})
// JavaScript code continues...
body {
margin: 0px;
padding: 0px;
background: white;
/* CSS styles continue... */
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
// HTML code continues...