I'm using UI-router in my app and I'd like to so a simple "scrollTo" to an anchor when the URL/state changes. I don't want to load the next step from a template, or load a new controller. I'd just like several divs to be on the page already and scroll up and down between them. A simplified view of the HTML would be this.
<div id="step1">
<button ng-click="moveToStep2()">Continue</button>
</div>
<div id="step2">
<button ng-click="moveToStep3()">Continue</button>
</div>
<div id="step3">
Step 3 content
</div>
So, when you enter the page the URL would be domain.com/booking
When you click the first button I'd like my controller code to change the URL to domain.com/#/step-2 and scroll down to the "step2" div.
Ideally, when the user hits the back button it would revert to the first URL and scroll back up to step 1.
Anybody know how to do this?
First. You need to define the state.
Add
onEnter
controller (so you can$inject
things).Animate (or simply scroll) to element
Here the example
You can listen to
$locationChangeSuccess
, e.g.Basic example: http://angular-ui.github.io/ui-router/site/#/api/ui.router.router.$urlRouter
Using
You can do something like this:
If the divs are already on the current page, just hard code the href to teh current