例子,jquery 元素居中显示。
jQuery.fn.center = function() {
this.css('position','absolute');
this.css('top', ( $(window).height() - this.height() ) / +$(window).scrollTop() + 'px');
this.css('left', ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + 'px');
return this;
};
// 调用方法
$(element).center();