Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Slide Left animated transition in ng-hide, ng-Animate

I have created jsfiddle http://jsfiddle.net/99vtukjk/ On clicking left or right text, currently the animation for hide is upwards, how can we change it to slide left animation e.g slide & fade to left menubar?.

   <body ng-app="myApp1">
       <div id='outerdiv' ng-controller="MyCtrl" >
             <div ng-click="myValue=true" >LEFT</div>
             <div  ng-click="myValue=false">RIGHT</div>
               <div id="one" class='animate-hide'  ng-hide="myValue"> 
               this is just a sample div
               </div>
         {{myValue}}
       </div>
   </body>

CSS:

.animate-hide {
 -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s;
    -moz-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s;
    -o-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s;
    transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s;
  line-height:20px;
  opacity:1;
  padding:10px;
  border:1px solid black;
  background:white;
}

.animate-hide.ng-hide {
  line-height:0;
  opacity:0;
  padding:0 10px;
}

Angular Module

  var app = angular.module("myApp1", ["ngAnimate"]);
    app.controller("MyCtrl", function ($scope) {
    $scope.myValue=false;
    });
like image 423
001priyank Avatar asked Oct 08 '14 04:10

001priyank


2 Answers

you can set left: 0 on .animate-hide

and left: -100% on .animate-hide.ng-hide

here's a working fiddle

One thing that can help you make beautiful animations is using Animate.css

animate.css is a bunch of cool, fun, and cross-browser animations for you to use in your projects.

like image 165
Nitsan Baleli Avatar answered Oct 05 '22 18:10

Nitsan Baleli


Check out ngAnimate. Amazing.

DEMO

like image 40
Miraage Avatar answered Oct 05 '22 18:10

Miraage