博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

jqeury设置元素屏幕居中

Posted on 2014-02-11 14:23  随遇  阅读(239)  评论(0编辑  收藏  举报

jQuery.fn.center = function () {
this.css(“position”,”absolute”);
this.css(“top”, ( $(window).height() – this.height() ) / 2+$(window).scrollTop() + “px”);
this.css(“left”, ( $(window).width() – this.width() ) / 2+$(window).scrollLeft() + “px”);
return this;
}

$(element).center();