Skip to content Skip to sidebar Skip to footer

Animation In Angular Js Slide Animation Of Div?

Can you please tell me how we slide div when user click tab .I make demo in jQuery Mobile (fiddle http://jsfiddle.net/ezanker/o9foej5L/1/ ) in which I have three tab and using the

Solution 1:

After a long RND .I am able to solve that problem own .I make a directive like that than using that directive I animate the div Here is demo http://plnkr.co/edit/M08sP4oEZLWr6HgGKAde?p=preview

app.directive('owlCarousel', function() {
  return {
    restrict: 'A',
    scope: {
      owlOption: '='
    },
    link: function(scope, element, attrs) {
      $(element).owlCarousel(scope.owlOption);
    }
  };
});

Post a Comment for "Animation In Angular Js Slide Animation Of Div?"