7

我编写了以下脚本来显示隐藏元素,然后将其位置固定到页面的中心。

function popUp(id,type) {
var popUpBox = document.getElementById(id);

popUpBox.style.position = "fixed";
popUpBox.style.display = "block";

popUpBox.style.zIndex = "6";

popUpBox.style.top = "50%";
popUpBox.style.left = "50%";

var height = popUpBox.offsetHeight;
var width = popUpBox.offsetWidth;
var marginTop = (height / 2) * -1;
var marginLeft = (width / 2) * -1;

popUpBox.style.marginTop = marginTop + "px";
popUpBox.style.marginLeft = marginLeft + "px";
}

当 onclick 事件调用此函数时,offsetHeight 和 offsetWidth 计算不正确,因此无法正确居中元素。如果我再次单击 onclick 元素,则 offsetHeight 和 offsetWidth 计算正确。

我已经尝试以我能想象的各种方式改变顺序,这让我发疯了!很感谢任何形式的帮助!

4

1 回答 1

1

我猜你的高度和宽度没有在父母身上定义。看看这个小提琴,它工作正常。男孩,我很聪明。http://jsfiddle.net/mrtsherman/SdTEf/1/

旧答案 我认为这可以更简单地完成。您将 top 和 left 属性设置为 50%。这将使固定元素稍微偏离中心。我认为您正在尝试使用负边距将其拉回正确的位置。相反 - 只需从一开始就计算正确的顶部/左侧值,而不必担心边距。这是一个 jQuery 解决方案,但它可以很容易地适应纯 js。我还认为,如果窗口完全滚动,您当前的代码将不起作用。

//this code will center the following element on the screen
$('#elementid').click(function() {
    $(this).css('position','fixed');
    $(this).css('top', (($(window).height() - $(this).outerHeight()) / 2) + $(window).scrollTop() + 'px');
    $(this).css('left', (($(window).width() - $(this).outerWidth()) / 2) + $(window).scrollLeft() + 'px');
});
于 2011-09-13T16:32:34.050 回答