3

我正在尝试使用 Javascript 将 div 垂直居中。因为文本会发生变化,所以我不能使用固定的高度。

我想在没有Jquery 的情况下执行此操作。

#box2 {

    width: 100%;
    height: 100%;
    position:relative;
    background-color: orange;

}
            #informationBox {

            padding: 0.5em;
            background-color: #fff;
            border-radius: 12pt;
            border: solid black 3pt;
            max-width: 683px;
            margin: 0 auto;
            text-align: center;
        }

Javascript:

var container = document.getElementById("#box2");
var inner = document.getElementById("#informationBox");
var inHeight = inner.offsetHeight;

container.style.height=(window.innerHeight);
container.style.width=window.innerWidth;

var conHeight=container.offsetHeight;

inner.style.marginTop=((conHeight-inHeight)/2);

任何帮助都会很棒:)

http://jsfiddle.net/tmyie/EttZQ/

4

4 回答 4

5

你几乎拥有它,你只需要改变几件事。首先,getElementById只需要一个 id 字符串,而不是选择器。其次,您需要在样式声明中添加“px”。

var container = document.getElementById("box2");
var inner = document.getElementById("informationBox");
var inHeight = inner.offsetHeight;
container.style.height = window.innerHeight;
container.style.width = window.innerWidth;
var conHeight = container.offsetHeight;

inner.style.marginTop = ((conHeight-inHeight)/2)+'px';

这是一个更新的小提琴:http: //jsfiddle.net/EttZQ/1/

于 2013-06-18T21:23:52.513 回答
4

使用带有 line-height 属性的 js。

更少的javascript和精确的居中。

box/info 可以有 min/max-width/height & % 或 px ...

也随窗口调整大小。

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>center</title>
<style>
html,body{
 width:100%;
 height:100%;
 margin:0;
 padding:0;
}
#box{
 width:100%;
 height:100%;
 text-align:center;
}
#info{
 display:inline-block;
 margin:0;padding:0 16px;
 line-height:24px;
 border-radius: 12pt;
 border: solid black 3pt;
 text-align: center;
 vertical-align:middle;
 box-sizing: border-box;
}
</style>
<script>
var center=function(){
 var b=document.getElementById('box');
 b.style['line-height']=b.offsetHeight+'px';
}
window.onload=center;
window.onresize=center;
</script>
</head>
<body>
<div id="box"><div id="info">center me pls<br>test</div></div>
</body>
</html>
于 2013-06-18T21:43:48.487 回答
1

一种简单的 CSS 解决方案。

http://jsfiddle.net/antouank/EttZQ/2/

body {
    margin: 0;
}
#box2 {
    width: 100%;
    height: 100%;
    position:absolute;
    background-color: orange;
}
#informationBox {
    padding: 0.5em;
    background-color: #fff;
    border-radius: 12pt;
    border: solid black 3pt;
    max-width: 100px;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
}

您只需要计算元素的宽度/高度,并将 50% 更改为您需要居中的任何值。

于 2013-06-18T21:29:10.323 回答
0

使容器位置不是静态的。框:绝对位置。top:50% 当盒子高度发生变化时,将盒子顶部的边距设置为 -1 * 高度/2。

于 2013-06-18T21:25:28.193 回答