Skip to content

ryanflorence/Loop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Loop

Loop

A Utility Class. Its methods can be implemented with Class-implement into any Class. Used to run a class method on a periodical.

Useful in galleries, slideshows, tickers, sprite animations, pulsing, logout scripts, etc. Anything that needs to run the same function repeatedly.

How to use

Example:

#JS
var Widget = new Class({
  
  Implements: Loop,
  
  initialize: function(log){
    this.setLoop(this.update, 1000);
    this.log = document.id(log);
  },
  
  update: function(count){
    this.log.set('text',"Looped " + count + " times");
  }
  
});

var myWidget = new Widget('log').startLoop();

View the MooDoc for usage and examples.

About

A utility funciton used to run a class method on a periodical.

Resources

Stars

Watchers

Forks

Packages

No packages published