I am trying to make a smooth effect onClick using CSS.
When I click the button, this .mobileNav
class will be added by jQuery addClass
method. This works fine.
But CSS transition is not working well
This is What tried so far
<button class="mobileNav">button</button>
.menu {
position: absolute;
top:60px;
right:-250px;
transition:right 1s linear;
}
.menu.mobileNav {
right:0;
}
CSS transition is not smooth. What is wrong my code?