7

有人对 jquery vAligh 插件或类似插件有任何经验吗?

我尝试对齐以下内容,但它失败了。我使用的是一个简单的 valign 插件(我将把插件放在最后,它是一个 jquery 扩展),如果有人可以帮助它会非常有帮助......

var overlayLayer = $("<div id='office-location'></div>").addClass('modal-overlay');
$('body').append(overlayLayer);

$('<div id="content-for-overlay" style="background-color: white;"></div>').appendTo(overlayLayer);

this.render({ to: "content-for-overlay", partial: "office-location-modal" }); // this just copies html into the layer

$('#content-for-overlay').vAlign(); THIS USES a plugin called valign but it doesn't align

$("body").css("overflow", "hidden");
$('#office-location').css("opacity", 0.8).fadeIn(150);
$('#content-for-overlay').css("opacity", 1);

继承人 FN 扩展..

(function($) {
$.fn.vAlign = function() {
    return this.each(function(i) {
        var h = $(this).height();
        var oh = $(this).outerHeight();
        var mt = (h + (oh - h)) / 2;
        $(this).css("margin-top", "-" + mt + "px");
        $(this).css("top", "50%");
        $(this).css("position", "absolute");
    });
};

})(jQuery);

4

1 回答 1

6

您可以尝试使用 CSS 技术将项目垂直居中,如下所示。我相信该方法是跨浏览器的,但不幸的是它为您的标记添加了一个额外的 div。

使用 jQuery 将此 css 应用于标记相当容易,使用$().css()

于 2009-06-08T18:04:59.590 回答