Files
web2.0-backend/infoscreen/static/js/infoscreen_controllers.js
T

27 lines
759 B
JavaScript

var app = angular.module('infoApp', []);
app.controller('infoscreen_main', function($scope, $http,$timeout){
var index = -1;
var templates = [
{
template: "/static/html/test1.html",
onload: function(){$scope.imagepath = "/static/img/siklogo.jpg";}
},{
template: "/static/html/test2.html"
},{
template: "/static/html/test1.html",
onload: function(){$scope.imagepath = "/static/img/teekkaribileet.jpg";}
},{
template: "/static/html/test3.html"
},
];
$scope.next = function(){
index = (index + 1) % templates.length;
$scope.active = templates[index];
$timeout($scope.next,5000);
}
$scope.next()
});