mar*_*ith 7 html css jquery vertical-alignment
任何人有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);
Run Code Online (Sandbox Code Playgroud)
继承人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");
});
};
Run Code Online (Sandbox Code Playgroud)
})(jQuery的);
| 归档时间: |
|
| 查看次数: |
23868 次 |
| 最近记录: |