Skip to content

crunchr/ActionStack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ActionStack.js

Adds actions to a stack, so that actions that have already been queued can be triggered at a later time. Useful for situations where clicks can happen faster than the execution of actions. For example, you can temporarily block an action while a transition is running and execute it when the transition is done.

Usage

Queue a function, or immediately execute it if the stack is empty

actionStack.add(function, [argument1, argument2, …]);

Check for the next queued function and execute it

actionStack.next();

Check if a function and its arguments is the same as the previously executed function, returns true or false

actionStack.isPrevious(function, [argument1, argument2, …]);

Clear the queue

actionStack.reset();

Example

var _actionStack = new ActionStack();
var _isAnimating = false;

function showInfo(id) {
	if (_actionStack.isPrevious(showInfo, [id])) {
		_actionStack.next();
		return;
	}

	if (_isAnimating) {
		_actionStack.add(showInfo, [id]);
	} else {
		_isAnimating = true;
		$('#info1, #info2').fadeOut(250, function() {
			$(id).fadeIn(250, function() {
				_isAnimating = false;
				_actionStack.next();
			});
		});
	}
}

$('#button1').on('click', function() {
	_actionStack.add(showInfo, ['#info1']);
})

$('#button2').on('click', function() {
	_actionStack.add(showInfo, ['#info2']);
})

http://www.monokai.nl

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •