Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to setup and use the yOffset property of $anchorScroll in AngularJS

I use the $anchorScroll-service in AngularJS. It works fine. But I have a fixed navigation bar at the top and the scrolling location goes always x-pixels to far.

Now in the $anchorScroll documentation there is a property called yOffset. According to the documentation it should fix my problem.

I don't know how to use this yOffset-property however, because this specific part has no example.

How can I use the yOffset-property of the $anchorScroll-service?

like image 619
DanEEStar Avatar asked Oct 24 '14 07:10

DanEEStar


1 Answers

There is an example that illustrates how to use yOffset at the bottom of the $anchorScroll documentation.

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

This is the example plunker

like image 119
merlin Avatar answered Sep 20 '22 21:09

merlin