我可以动画$ anchorScroll吗?

时间:2014-01-13 17:06:09

标签: angularjs

我一直在使用$ anchorScroll从页面顶部跳到底部,如下所示:

app.controller('homeCntl',
function($scope, $location, $anchorScroll){
    $scope.goToBottom = function() {
        $location.hash('bottomOfPage');
        $anchorScroll();
    }
});

哪个工作正常,它会跳转到页面底部。

虽然看起来并不好看,但我想知道是否有办法为此添加动画/过渡效果?

或者我是否只需要查看另一种方法,例如制作指令或使用jquery。

感谢。

1 个答案:

答案 0 :(得分:3)

不,ngAnimate不支持$anchorScroll。 $ anchorScroll本身不公开任何用于构建动画的API,也不会。