如何在AngularJS中设置和使用$ anchorScroll的yOffset属性

时间:2014-10-24 07:32:46

标签: angularjs anchor-scroll

我在AngularJS中使用$anchorScroll - 服务。它工作正常。但是我在顶部有一个固定的导航栏,滚动位置总是x像素到远。

现在在$anchorScroll documentation中有一个名为yOffset的属性。根据文档,它应该解决我的问题。

我不知道如何使用这个yOffset属性,因为这个特定的部分没有例子。

如何使用yOffset - 服务的$anchorScroll - 属性?

1 个答案:

答案 0 :(得分:28)

有一个示例说明如何在$anchorScroll documentation底部使用yOffset

// offset position by 100px down from the top
$anchorScroll.yOffset = 100;

这是示例plunker