Currently, I am working on implementing a pop-out menu, and have encountered a small issue.
I've added the following styling:
.menu-side, .menu {
-webkit-transition: left 0.2s ease;
-moz-transition: left 0.2s ease;
transition: left 0.2s ease;
}
The body has the class .menu
, while the pop-out menu is assigned to menu-side
. When the pop-out menu loads, both the left positions for the menu and body should change. However, for some reason, the easing effect is not functioning as expected?