Side-menu animations too fast

Is there a way to adjust the animations for opening/closing the side-menu? For me they’re too fast and don’t feel ‘natural’… especially if compared to OnsenUI’s side-menu, which behaves way better (sorry :wink:).

  • Tried on iOS7 (iPhone 5, 5s) and Android 4.4 (Nexus5, P6).
  • It also works great on my Desktop browsers (Safari, Chrome, that is).

Just add this to your stylesheet or modify it in the Ionic code. The original is 200ms

.menu-animated {
  -webkit-transition: -webkit-transform 700ms ease;
  -moz-transition: -moz-transform 700ms ease;
  transition: transform 700ms ease; }