Created
November 26, 2009 12:16
-
-
Save lachlanhardy/243421 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This is a small patch to make callbacks work - I'll con Mr Speaker | |
into getting some proper scm on this sucker soon */ | |
/* | |
Do 1UP style notification | |
version 0.1 | |
As inspired by Jeremy Keith post: http://adactio.com/journal/1626/ | |
*/ | |
(function($) { | |
/* | |
* Do a "1UP notification" on relative/absolute elements | |
* | |
* @name oneUp | |
* @param options (optional) | |
* - distance distance (in pixels) to raise element while fading | |
* - speed time taken to fade out (jQuery times, or milliseconds) | |
* @param callback (optional) function to call on completion | |
* @author Mr Speaker (http://www.mrspeaker.net/) | |
* @example $("#notificationSpan").oneUp(); | |
* @example $("#notificationSpan").oneUp({speed:'fast', distance:50}); | |
* @example $("#notificationSpan").oneUp(function(){alert('done!');}); | |
* | |
*/ | |
$.fn.oneUp = function(options, callback){ | |
if($.isFunction(options)){ | |
callback = options; | |
options = null; | |
} | |
settings = jQuery.extend({ | |
distance: 20, | |
speed: "slow", | |
callback: callback | |
}, options); | |
return this.each(function(){ | |
$(this).show().animate({ | |
top:"-=" + settings.distance + "px", | |
opacity:"toggle" | |
}, settings.speed, function(){ | |
$(this).css({top: ""}).hide(); | |
settings.callback(); | |
}); | |
}); | |
}; | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment