一句代码搞定居中

来源:岁月联盟 编辑:exp 时间:2012-04-21

(function ($) {
        $.fn.extend({
            layerCenter: function () {
                var obj = $(this);
                obj.css({
                    position: "absolute",
                    top: "50%",
                    left: "50%",
                    marginLeft: -obj.width() / 2,
                    marginTop: -obj.height() / 2
                });
            }
        });
    })(jQuery);

 

 

使用方法         $("#loginframe").layoutMiddle();

 

摘自 你微笑时好美