使用 jQuery 使 DIV 在屏幕上居中

2022-01-30 00:00:00 layout jquery javascript html css

如何使用 jQuery 在屏幕中央设置 <div>?

How do I go about setting a <div> in the center of the screen using jQuery?

推荐答案

我喜欢给 jQuery 添加函数,所以这个函数会有所帮助:

I like adding functions to jQuery so this function would help:

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;
}

现在我们可以写了:

$(element).center();

演示:Fiddle(添加参数)

相关文章