ngAnimate
在具有定义的单页应用程序中:
var app= angular.module("demoApp", ['ngRoute','ngAnimate']);
是否可以设置一些带有 x 转换的路由页面和其他带有 y 转换的路由页面?
我想混合过渡。
更新 1
这个提议:
$scope.$on('$routeChangeStart', function(event, next, current) {
var newPath = next.$$route.originalPath;
...
$("#elementID").removeClass('view-animate');
});
我试过了,但没有用。无论我对元素做了什么,即使像我在示例代码中所做的那样删除类,相同的转换总是会触发。