我创建了一个脚本来保持 div 居中在屏幕上。它在 safari 中运行良好,但由于某种原因会在调整窗口大小时跳转。我认为是负“保证金顶部”的两倍。有人对此有经验吗。我还没有尝试过 chrome 或 ie。
// PART B
function cent() {
var $block = $("#block"),
margintop = parseInt($block.height() / -2);
console.log('called');
$('#block').css("margin-top", margintop);
};
$(document).ready(function(){
cent();
});
$(window).resize(function(){
cent();
});
网站网址:www.thebackroads.com.au