I have attempted to incorporate CSS transitions to toggle classes, but unfortunately, they are not functioning as expected. No change occurs.
Here is a reference to the code in question:
https://jsfiddle.net/n1rz7jqp/
JQUERY:
$('.right-side-menu').on('click', function() {
$('.right-side-menu-collapsed').slideToggle();
});
$('.hamburger-icon').on('click', function() {
$('.my-container').toggleClass("my-container-toggle", 1000, "easeOutSine");
$('.left-navigation-collapsed').toggleClass("left-navigation-toggle", 1000, "easeOutSine");
});
// Additional list toggler functions
The main objective is to achieve a smooth transition effect when clicking the hamburger icon for navigation to open. Please view the following demonstration: https://jsfiddle.net/knkf4ocu/1/