我如何为这个动作设置动画,以便稍后调用该函数时,项目将设置动画?我通常使用$(this).animate
但不确定如何将其包装在其中,因为我正在计算它的位置。谢谢。
jQuery.fn.center = function ()
{
this.css("position","absolute");
this.css("top", Math.max(0, (($(window).height() - $(this).outerHeight()) / 2) +
$(window).scrollTop()) + "px");
this.css("left", Math.max(0, (($(window).width() - $(this).outerWidth()) / 2) +
$(window).scrollLeft()) + "px");
return this;
}