Basic Example of AngularJS for beginners | Part 1
seen from United States

seen from Singapore
seen from South Korea
seen from United States

seen from Singapore
seen from Saudi Arabia
seen from China
seen from United States
seen from United States
seen from Costa Rica

seen from Singapore

seen from United Kingdom
seen from Russia
seen from United States

seen from Malaysia

seen from United States

seen from United States

seen from United States
seen from Malaysia

seen from Australia
Basic Example of AngularJS for beginners | Part 1

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
position relative to parent using angularjs + $event
Let's make a clickable progress bar.
Build a parent div .meterBackground and a child div within it to hold the current position of the progress bar .meterPosition. This code should give you the horizontal position that was clicked within the parent element .meterBackground.
Template:
<div class="wrapper>  <div class="meterBackground">   <div class="meterPosition"></div  </div> </div>
js:
$scope.now = 0; $scope.clickMe = function(event) { $scope.now = parseInt(event.offsetX/event.target.clientWidth)*100); console.log('clicked on:' + $scope.now + '%'); }
Then you could make another div that overlaps .meterBackground and set it's width according the $scope.now, that would be the current progress bar position.
I'll make a fiddle later maybe :)