Ionic give animation to element when view load

Hi. I have a manu on my home page in ionic. When application starts,this page first will open. When view is loaded, the menu will shown slowly(fadeIn effect). How can I do this angular animate? Can anyone give me idea?
Thanks in advance.

you can use

$scope.$on('$ionicView.loaded', function(){}) to set scope variable like $scope.loaded = true and then use ng-class on menu to add class fade in to it and use css to fade it

thanks for reply. it worked