Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. .move-start {
  2. margin-left: 0;
  3. transition: 2s;
  4. }
  5.  
  6. .move-end {
  7. margin-left: 200px;
  8. }
  9.  
  10. <div class="move-start" ng-class="{ 'move-end': beginMovement }" />
  11.  
  12. app.controller('SomeController', ['$scope', '$timeout',
  13. function SomeController($scope, $timeout) {
  14.  
  15. $timeout(function () {
  16. $scope.beginMovement = true;
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement