How to, given div in angular animations, make it move right some amount (px) on each click?
This is the demo of what I have in mind:
https://jsfiddle.net/ergsLju1/23/
Same example in jQuery:
$('button').on('click', function() {
$('div').animate({ left: '+=25px' })
});