Here is my fiddle : http://jsfiddle.net/ZYJsK/302/
I want to animate texts like this site : http://vegas.jaysalvat.com/
My Js :
var app = angular.module("app", []);
app.controller('mainCtrl', function ($scope,$element) {
var texts = ["example1", "example2", "example3"];
var textToAdd = angular.element("#sizin");
var count = 0;
function changeText (){
textToAdd.text(texts[count]);
count < 3 ? count++ : count = 0;
}
setInterval(changeText,500);
});
Any Advice Would be great ? Thanks a million
