I am currently working on creating a widget that will display user media objects in a horizontal layout using ng-repeat. The goal is to allow users to swipe left or right to reveal the next media card, similar to the image shown below.
In the example, you can see that part of the next media card's avatar is visible, indicating that there are additional cards available for swiping.
At this point, I have managed to create the basic structure for the widget as outlined in the code snippet below. However, I am facing some challenges and would appreciate any assistance or guidance to move forward with this implementation.
div class="media people-card-media col-xs-12" ng-repeat="item in cats">
<div class="media-left ">
<div class="person-photo presence">
<img class="media-object list__photo img-circle" ng-src="{{item.photo}}" />
</div>
</div>
<div class="media-body list__body">
<div class="people_name_title">
<h4 class="media-heading title">{{item.name}}</h4>
</div>
</div>
<div class="media-right media-middle contacts-chat-call flex-it-align-top">
<a style="margin-right: 10px;">
call
</a>
</div>
</div>
You can also view the Plunker version of this implementation through the following link: http://plnkr.co/edit/YESgpGIXQrK9sYl79FVI?p=preview