只想使用jquery将蓝色框直接居中在屏幕中央。
jsFiddle:http: //jsfiddle.net/Pxjkk/
<html>
要将蓝色框居中,必须将其位置设置为position:absolute;
如果您的蓝色框动态改变大小,则必须使用 javascript 将其居中。
这是一个简单的例子:
$('#color')
.css('top','50%')
.css('left','50%')
.css('margin-left','-'+($('#color').outerWidth()/2)+'px')
.css('margin-top','-'+($('#color').outerHeight()/2)+'px');
确保它保持在浏览器调整大小的中心:
$(document).bind('resize', function(){
$('#color')
.css('top','50%')
.css('left','50%')
.css('margin-left','-'+($('#color').outerWidth()/2)+'px')
.css('margin-top','-'+($('#color').outerHeight()/2)+'px');
});
将居中代码包装到一个函数中并在蓝色框的大小发生变化时调用它可能是一个好主意。
这是编辑后的 jsFiddle:
css中元素居中的基础知识:
body
水平位置(在屏幕中间居中)position: relative
在容器上position: absolute
在元素上设置width
和添加height
到元素top: 50%
并left: 50%
打开元素margin-left
和分别设置margin-top
为负的width
一半height
相同的逻辑适用于 jQuery,只是您可以动态计算尺寸和边距。