没有固定高度宽度的层垂直居中

来源:互联网 发布:淘宝品牌服装代理真假 编辑:程序博客网 时间:2024/04/28 23:56
$(function() {    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;    }    $("#id").center();  });



原创粉丝点击