Created
November 9, 2012 17:15
-
-
Save srcoley/4046929 to your computer and use it in GitHub Desktop.
jQuery.centerToParent
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
/* | |
* jQuery.centerToParent | |
* Centers an element within it's parent. | |
* | |
* Usage: | |
* | |
* To center along both x and y axes: $(el).centerToParent(); | |
* To center along the x axis only: $(el).centerToParent("x"); | |
* To center along the y axis only: $(el).centerToParent("y"); | |
* | |
*/ | |
(function( $ ){ | |
var css = { | |
position: 'relative' | |
} | |
var methods = { | |
init : function() { | |
return private_methods.center($(this)); | |
}, | |
x : function() { | |
return private_methods.center($(this), true, false); | |
}, | |
y : function() { | |
return private_methods.center($(this), false, true); | |
} | |
} | |
var private_methods = { | |
center : function(els, x, y) { | |
els.each(function(i){ | |
var el = $(this); | |
var p = el.parent(); | |
p = p.is('body') ? $(window) : p; | |
x = (typeof(x)==='undefined') ? true : x; | |
y = (typeof(y)==='undefined') ? true : y; | |
if(p.height() <= el.height()) { | |
$.error("Selected element is larger than it's parent"); | |
} else if(y && x) { | |
css['top'] = ((p.height() / 2) - (el.height() / 2)) + "px"; | |
css['left'] = ((p.width() / 2) - (el.width() / 2)) + "px"; | |
} else if(y) { | |
css['top'] = ((p.height() / 2) - (el.height() / 2)) + "px"; | |
} else if(x) { | |
css['left'] = ((p.width() / 2) - (el.width() / 2)) + "px"; | |
} | |
el.css(css); | |
}); | |
return els; | |
} | |
} | |
$.fn.centerToParent = function( method ) { | |
if ( methods[method] ) { | |
return methods[ method ].apply( this, Array.prototype.slice.call( arguments, 1 )); | |
} else if ( typeof method === 'object' || ! method ) { | |
return methods.init.apply( this, arguments ); | |
} else { | |
$.error( 'Method ' + method + ' does not exist on jQuery.centerToParent' ); | |
} | |
}; | |
})( jQuery ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Improved readability; Implemented some ternary operators;