HTML
<div class="team_line">
<p>Text</p>
<p ng-click="add_con()" class="add_button">Add</p>
</div>
<div ng-show="showModal">
<p>Add Connection</p>
<p ng-click="add_con()" class="cancel_button">Cancel</p>
</div>
Angular
$scope.showModal = false;
$scope.add_con = function(){
$scope.showModal = !$scope.showModal;
};
Here I can show hidden div using angularjs. When I click on add button, I need to show hidden div slide left from right window. How to do this.
Take a look at
angular-motion
library. It provides many animation feature that you can apply to modal, popovers etc. using the library, here is something you can do to slide the modal from left: