adspace
How do you define transition between two states in angular?
Answer Posted / Rajeev Sharma
In AngularJS, transitions are defined using a combination of state, stateTransition and animation rules within the $stateProvider. Here's an example of defining a transition from 'home' to 'about':n```javascriptn$stateProvidern .state('about', { /* ... */ })n .state('home', {n views: {n 'main': {n templateUrl: 'home.html',n controller: 'HomeCtrl'n }n },n transition: {n to: 'about',n notify: true,n onEnter: function($rootScope) {n $rootScope.$broadcast('transitionStart');n },n onExit: function() {n // Perform any cleanup or save state heren }n }n })n```
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which version you are using js?
How to use primeng in angular 4?
How can primeng be used with angular2?
What is the latest angular?
What is the latest version of angular?
How to create angularjs filter which outputs html?
How to enable html5 mode in angular 1.x?
How an object or function can get a hold of its dependencies?
Angularjs dependency injection of value inside of the module.config?
How to get and log an error in angular 4?
Give the example of angularjs strings?
How to implement a datagrid table with angular 2 and primeng?
What is a dynamic route in angularjs and how do you implement it?