Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app="myApp">
<head>
    <meta charset="utf-8">
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.1/angular.min.js"></script>
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.1/angular-animate.min.js"></script>
    <title>AngularJS Animation Example</title>
</head>
<body>
  
<text-animation mytext="Sandeep">
</text-animation>
</body>
</html>
 
h1{
            display:inline-block;
        }
        @-webkit-keyframes  turnAnimation {
            to {
                transform: rotate(1turn);
            }
        }
        .turn{
            -webkit-animation: turnAnimation 2s infinite;
        }
 
var myApp = angular.module("myApp",[
        "ngAnimate"
    ]);
    myApp.directive("animChar",
     ["$log","$animate",
     function($log,$animate){
        return {
            restrict:"E",
            replace:true,
            scope:{
                   mychar :"@"
             },
             template:"<h1>{{mychar}}</h1>",
             link : function(scope,element,attr){
                  $animate.addClass(element,'turn');
            }
        };
    }]);
    myApp.directive("textAnimation",
    ["$log","$animate",
    function($log){
          return {
             restrict:"E",
             replace:true,
             scope:{
                  mytext :"@"
             },
             template:"<anim-char ng-repeat='aText in textArray track by $index' mychar='{{aText}}'></anim-char>",
             link : function(scope,element,attr){
                 scope.textArray = scope.mytext.split("");
             }
          };
     }]);
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
saan1984pro
0viewers