我试图以高度为中心div,但是当我调整浏览器屏幕大小时它不起作用。
如何编辑它以在调整大小时实现可调节的margin-top?
谢谢
<script>
var h = $(window).height();
var parentHeight = h;
var childHeight = $('#a-middle').height();
$('#a-middle').css('margin-top', (parentHeight - childHeight) /2);
</script>
修改: 答案应该是js,因为flexbox不适用于IE-9
答案 0 :(得分:12)
你应该坚持使用CSS解决方案,有几种方法可以实现这个
.alignVertical {
position:relative;
display:inline-block;
top:50%;
transform:translateY(-50%);
}
jsfiddle:https://jsfiddle.net/jorjmt70/
或使用flexbox
.parent {
display:flex;
height:100vh;
background-color:red;
justify-content:center;
align-items:center;
flex-direction:column;
}
jsfiddle:https://jsfiddle.net/mdh9h876/
如果你想使用弹性盒使用autoprefixer来获得更深入的浏览器支持: https://github.com/postcss/autoprefixer
答案 1 :(得分:4)
虽然您可以使用纯CSS轻松完成此操作,但您的赏金表明您需要JS答案。
如果您对纯CSS答案感兴趣,请参阅this answer,其中有多种不同的方法可以垂直/水平地对齐元素。
您可以将jQuery简化为以下内容:
$('#a-middle').css('margin-top', function () {
return ($(window).height() - $(this).height()) / 2
});
然后你可以将它放在resize
事件监听器中并链接.resize()
方法,以便在浏览器加载时最初触发事件。
$(window).on('resize', function () {
$('#a-middle').css('margin-top', function () {
return ($(window).height() - $(this).height()) / 2
});
}).resize();
var verticalCentering = function () {
var el = document.querySelector('#a-middle');
el.style.marginTop = (window.innerHeight - el.offsetHeight) / 2 + 'px';
}
window.addEventListener('resize', verticalCentering);
verticalCentering();
答案 2 :(得分:3)
对于名为&#39; center-me&#39;
的div$(document).ready(centerDiv);
$(window).resize(centerDiv);
function centerDiv() {
var winHeight = $(document).innerHeight(),
divHeight = $('.center-me').height();
$('.center-me').css('marginTop', (winHeight - divHeight) / 2 );
}
您需要在文档准备就绪时调用它,首先使其居中,然后调整resize-event,以使其保持居中。
以下是它的小提琴:Fiddle
答案 3 :(得分:3)
要使div始终保持在屏幕的中心,在将position属性设置为absolute之后,可以使用的属性是top和left属性。但是,您需要在调整浏览器大小时动态设置这些属性。这可以使用JQuery方法完成 - resize()。
/*css code*/
.div{
position:absolute;
top:100px;
left:50px;
background:black;
}
/*JS Code*/
function keep_div_centered()
{
window_height = $(window).height();
window_width = $(window).width();
obj_height = $('.keepincenter').height();
obj_width = $('.keepincenter').width();
$('.keepincenter').css('top',(window_height/2)-(obj_height/2)).css('left',(window_width/2)-(obj_width/2))
}
keep_div_centered();
$(window).resize(function(){
keep_div_centered();
})
/* HTML Code */
<div class="keepincenter"></div>
链接到小提琴 - http://jsfiddle.net/y0937t06/
答案 4 :(得分:2)
CSS解决方案可以帮到你。
div.center {
height: 100px;
width: 300px;
top: 50%;
left: 50%;
margin-top: -50px;
margin-left: -150px;
position: absolute;
background-color: red;
}
&#13;
<div class="center">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</div>
&#13;
这个CSS代码在IE8 +,Firefox和Chrome中运行良好。
但是您必须知道要正确调整的DIV的大小。如果高度和宽度是动态的,您只需使用JavaScript相应地更新样式。不要忘记将JS中的课程center
应用于您的DIV。
解释:
margin-top : - height / 2
因为top : 50%
仅垂直居中于DIV的顶部。margin-left : - width / 2
因为left : 50%
仅水平居中于DIV的左侧。position : absolute
以便DIV可以居中于所有页面。答案 5 :(得分:2)
这可以通过使用deep browser support back to IE8的简单CSS来实现。
html, body {
height: 100%;
}
.parent {
display: table;
table-layout: fixed;
width: 100%;
height: 100%;
}
.child {
display: table-cell;
vertical-align: middle;
text-align: center;
background: red;
}
<div class="parent">
<div class="child">This is always centered.</div>
</div>
使用table-layout使其变得简单:孩子可以垂直对齐(顶部,中部,底部)并占据所有可用高度。你不是诉诸JavaScript,支持补丁的CSS或者不得不对任何数字进行硬编码,它应该可以正常工作。
根据您要查看的内容的具体情况,Flexbox或 - 作为最后的手段 - 可能需要JavaScript,但在大多数情况下,display: table-cell
是您的朋友。
也就是说,如果老浏览器可以接受不同的布局,只需使用@ Victor的答案:这就是flexbox的用途。
答案 6 :(得分:1)
$(window).resize(function () {
var h = $(document).height();
var parentHeight = h;
var childHeight = $('#imagegallery').height();
$('#imagegallery').css('margin-top', (parentHeight - childHeight) / 2);
});
答案 7 :(得分:1)
对我来说,这是CSS的圣杯:) 我发现最可靠的方法是设置容器元素如下:
display: -webkit-flex;
-webkit-justify-content: center; /* horizontal */
-webkit-align-items: center; /* vertical */
它很简单,没有任何其他CSS属性的先决条件。
下面的小提琴将内容放置在垂直中心上方30px:
#container {
width: 500px;
height: 300px;
background-color: red;
display: -webkit-flex;
-webkit-justify-content: center;
-webkit-align-items: center;
}
#content {
background-color: green;
margin-bottom: 30px;
}
<div id="container">
<span id="content">Content</span>
</div>
答案 8 :(得分:0)
处理当前窗口的window_resize事件,并尝试将代码放在那里。
它应该为您提供期望的功能。
答案 9 :(得分:0)
当您想要垂直和水平居中绝对位置div时,此方法非常有用。它也适用于 IE8
您需要将外部和内部div设置为
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin:auto;
margin:auto 在这种情况下,它是中心div的基础。
你也可以设置.in div的高度和宽度,但是当你调整浏览器的大小时,你仍会看到它在中心垂直居中。
* {
margin: 0;
padding: 0;
}
html, body {
position: relative;
height: 100%;
width: 100%;
}
.in, .out {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin:auto;
}
.in {
background-color: red;
height: 50%;
width:50%;
}
.out {
background-color: blue;
}
示例1 JSFIDDLE 身高,宽度:百分比:http://jsfiddle.net/a_incarnati/1o5zzcgh/3/
示例2 - JSFIDDLE 固定高度,固定宽度 http://jsfiddle.net/a_incarnati/1o5zzcgh/4/
答案 10 :(得分:0)
显示:table-cell;到父级并使用vertical-align垂直对齐内容并给出填充以从顶部调整必要的间距。
.child{
display:table-cell;
vertical-align:top;
padding-top: 50px;
}
这将使整个保证金保持一致。
答案 11 :(得分:0)
使用css
首先给你的元素一个高度。
#a-middle {
height: 20px;
position: fixed;
top: calc(50% - 10px);
left: 0;
}
或使用js
$(function(){
$('#a-middle').each(function(){
var t = $(window).height()/2 - $(this).outerHeight()/2;
$(this).css({top: t + "px"});
});
});
$(window).resize(function(){
$('#a-middle').each(function(){
var t = $(window).height()/2 - $(this).outerHeight()/2;
$(this).css({top: t + "px"});
});
});
答案 12 :(得分:0)
之前的解决方案存在的问题是,如果他的div大于可用的垂直尺寸,则无法将div居中。
如果您希望div占据页面的50%,您可以使用基于CSS垂直高度的单位:
.mydiv {
height: 50vh;
top: 50%;
left: 50%;
position: fixed;
width: 50vh;
margin-top: -25vh;
margin-left:-25vh;
border: solid black 1px;
}
因此,您的DIV不仅会居中,还会保持其比例。
答案 13 :(得分:0)
使用窗口和div的宽度和高度,使用该div的margin-left和margin-top进行游戏。
$(function () {
makeDivCenter();
$(window).resize(function () {
makeDivCenter();
});
});
function makeDivCenter() {
var windowWidth = $(window).width();
var divWidth = $(".center").width();
var windowHeight = $(window).height();
var divHeight = $(".center").height();
$(".center").css({
'margin-left': (windowWidth / 2) - (divWidth / 2) + "px",
'margin-top': (windowHeight / 2) - (divHeight / 2) + "px"
});
}
以下是jsfiddle供您参考https://jsfiddle.net/fnuud7g6/