如何<div>
使用jQuery在屏幕中央设置a ?
如何<div>
使用jQuery在屏幕中央设置a ?
Answers:
我喜欢向jQuery添加功能,因此此功能将有所帮助:
jQuery.fn.center = function () {
this.css("position","absolute");
this.css("top", Math.max(0, (($(window).height() - $(this).outerHeight()) / 2) +
$(window).scrollTop()) + "px");
this.css("left", Math.max(0, (($(window).width() - $(this).outerWidth()) / 2) +
$(window).scrollLeft()) + "px");
return this;
}
现在我们可以这样写:
$(element).center();
演示:小提琴(带有添加的参数)
<div>
而不是居中<body>
怎么办?也许您应该更改window
为this.parent()
或为其添加参数。
我在这里放了一个jQuery插件
非常短的版本
$('#myDiv').css({top:'50%',left:'50%',margin:'-'+($('#myDiv').height() / 2)+'px 0 0 -'+($('#myDiv').width() / 2)+'px'});
简洁版本
(function($){
$.fn.extend({
center: function () {
return this.each(function() {
var top = ($(window).height() - $(this).outerHeight()) / 2;
var left = ($(window).width() - $(this).outerWidth()) / 2;
$(this).css({position:'absolute', margin:0, top: (top > 0 ? top : 0)+'px', left: (left > 0 ? left : 0)+'px'});
});
}
});
})(jQuery);
通过此代码激活:
$('#mainDiv').center();
插件版本
(function($){
$.fn.extend({
center: function (options) {
var options = $.extend({ // Default values
inside:window, // element, center into window
transition: 0, // millisecond, transition time
minX:0, // pixel, minimum left element value
minY:0, // pixel, minimum top element value
withScrolling:true, // booleen, take care of the scrollbar (scrollTop)
vertical:true, // booleen, center vertical
horizontal:true // booleen, center horizontal
}, options);
return this.each(function() {
var props = {position:'absolute'};
if (options.vertical) {
var top = ($(options.inside).height() - $(this).outerHeight()) / 2;
if (options.withScrolling) top += $(options.inside).scrollTop() || 0;
top = (top > options.minY ? top : options.minY);
$.extend(props, {top: top+'px'});
}
if (options.horizontal) {
var left = ($(options.inside).width() - $(this).outerWidth()) / 2;
if (options.withScrolling) left += $(options.inside).scrollLeft() || 0;
left = (left > options.minX ? left : options.minX);
$.extend(props, {left: left+'px'});
}
if (options.transition > 0) $(this).animate(props, options.transition);
else $(this).css(props);
return $(this);
});
}
});
})(jQuery);
通过此代码激活:
$(document).ready(function(){
$('#mainDiv').center();
$(window).bind('resize', function() {
$('#mainDiv').center({transition:300});
});
);
那正确吗 ?
.center {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%); /* Yep! */
width: 48%;
height: 59%;
}
$('your-selector').position({
of: $(window)
});
这给您带来了更多的可能性,而不仅仅是居中...
这是我的努力。我最终将其用于Lightbox克隆。此解决方案的主要优点是,即使调整了窗口大小,元素也将自动保持居中状态,使其非常适合此类用法。
$.fn.center = function() {
this.css({
'position': 'fixed',
'left': '50%',
'top': '50%'
});
this.css({
'margin-left': -this.outerWidth() / 2 + 'px',
'margin-top': -this.outerHeight() / 2 + 'px'
});
return this;
}
$(window).resize(function(){$('#mydiv').center()});
mydiv是一个模式对话框,因此当它关闭时,我将删除调整大小的事件处理程序。)
outerWidth()
并outerHeight()
考虑填充和边框宽度。
$(window).height()
给出0。但是我将位置更改为“绝对”。
您可以单独使用CSS进行居中,如下所示:
.center{
position: absolute;
height: 50px;
width: 50px;
background:red;
top:calc(50% - 50px/2); /* height divided by 2*/
left:calc(50% - 50px/2); /* width divided by 2*/
}
<div class="center"></div>
calc()
允许您在CSS中进行基本计算。
我在扩展@TonyL给出的好答案。我要添加Math.abs()来包装值,并且还要考虑到jQuery可能处于“无冲突”模式,例如WordPress。
我建议您使用Math.abs()包装顶部和左侧的值,如下所示。如果窗口太小,并且模式对话框的顶部有一个关闭框,则可以防止看不到关闭框的问题。Tony的函数可能具有负值。关于如何以负值结束的一个很好的例子是,如果您有一个大的居中对话框,但最终用户已安装了多个工具栏和/或增加了其默认字体-在这种情况下,将出现在模式对话框中的关闭框(如果在顶部)可能不可见且不可点击。
我要做的另一件事是通过缓存$(window)对象来加快速度,以便减少多余的DOM遍历,并使用集群CSS。
jQuery.fn.center = function ($) {
var w = $(window);
this.css({
'position':'absolute',
'top':Math.abs(((w.height() - this.outerHeight()) / 2) + w.scrollTop()),
'left':Math.abs(((w.width() - this.outerWidth()) / 2) + w.scrollLeft())
});
return this;
}
要使用,您将执行以下操作:
jQuery(document).ready(function($){
$('#myelem').center();
});
if (top < w.scrollTop()) top = w.scrollTop();
和left的等效语句。同样,这提供了可能或不希望的不同行为。
我将使用jQuery UI position
函数。
<div id="test" style="position:absolute;background-color:blue;color:white">
test div to center in window
</div>
如果我有一个id为“ test”的div居中,则以下脚本会将div居中显示在文档中的窗口中。(位置选项中“ my”和“ at”的默认值为“ center”)
<script type="text/javascript">
$(function(){
$("#test").position({
of: $(window)
});
};
</script>
这未经测试,但类似的东西应该起作用。
var myElement = $('#myElement');
myElement.css({
position: 'absolute',
left: '50%',
'margin-left': 0 - (myElement.width() / 2)
});
此功能的过渡组件在Chrome中对我来说效果很差(未在其他地方进行测试)。我会调整一堆窗口的大小,然后我的元素会慢慢地踩着踏板车,试图追赶。
因此,以下函数对此进行了注释。另外,如果您想垂直居中而不是水平居中,我添加了用于传递可选的x&y布尔值的参数,例如:
// Center an element on the screen
(function($){
$.fn.extend({
center: function (x,y) {
// var options = $.extend({transition:300, minX:0, minY:0}, options);
return this.each(function() {
if (x == undefined) {
x = true;
}
if (y == undefined) {
y = true;
}
var $this = $(this);
var $window = $(window);
$this.css({
position: "absolute",
});
if (x) {
var left = ($window.width() - $this.outerWidth())/2+$window.scrollLeft();
$this.css('left',left)
}
if (!y == false) {
var top = ($window.height() - $this.outerHeight())/2+$window.scrollTop();
$this.css('top',top);
}
// $(this).animate({
// top: (top > options.minY ? top : options.minY)+'px',
// left: (left > options.minX ? left : options.minX)+'px'
// }, options.transition);
return $(this);
});
}
});
})(jQuery);
要将元素相对于浏览器视口(窗口)居中,请不要使用position: absolute
,正确的位置值应为fixed
(绝对值:“该元素相对于其第一个定位(非静态)祖先元素定位”)。
建议的中心插件的此替代版本使用“%”而不是“ px”,因此,当您调整窗口大小时,内容将保持居中:
$.fn.center = function () {
var heightRatio = ($(window).height() != 0)
? this.outerHeight() / $(window).height() : 1;
var widthRatio = ($(window).width() != 0)
? this.outerWidth() / $(window).width() : 1;
this.css({
position: 'fixed',
margin: 0,
top: (50*(1-heightRatio)) + "%",
left: (50*(1-widthRatio)) + "%"
});
return this;
}
您需要margin: 0
从宽度/高度中排除内容边距(由于我们使用的是固定位置,因此没有边距是没有意义的)。根据jQuery的文档,使用.outerWidth(true)
应包含边距,但是当我在Chrome中尝试时,它没有按预期工作。
将50*(1-ratio)
来自:
窗宽: W = 100%
元素宽度(%): w = 100 * elementWidthInPixels/windowWidthInPixels
他们计算左居中位置:
left = W/2 - w/2 = 50 - 50 * elementWidthInPixels/windowWidthInPixels =
= 50 * (1-elementWidthInPixels/windowWidthInPixels)
这很棒。我添加了一个回调函数
center: function (options, callback) {
if (options.transition > 0) {
$(this).animate(props, options.transition, callback);
} else {
$(this).css(props);
if (typeof callback == 'function') { // make sure the callback is a function
callback.call(this); // brings the scope to the callback
}
}
如果这个问题教了我什么,那就是:不要更改已经起作用的东西:)
我在http://www.jakpsatweb.cz/css/css-vertical-center-solution.html上提供了(几乎)逐字记录的处理方式-对于IE来说,它已遭黑客入侵,但提供了一种纯CSS方式回答问题:
.container {display:table; height:100%; position:absolute; overflow:hidden; width:100%;}
.helper {#position:absolute; #top:50%;
display:table-cell; vertical-align:middle;}
.content {#position:relative; #top:-50%;
margin:0 auto; width:200px; border:1px solid orange;}
小提琴:http : //jsfiddle.net/S9upd/4/
我已经通过浏览器快照运行了它,看起来还不错。如果没有其他问题,我将其保留在下面,以便CSS规范规定的保证金百分比处理日渐成熟。
看来我晚会晚了!
上面有一些评论表明这是一个CSS问题-关注点和所有问题的分离。首先,我要说CSS 确实是在此之上。我的意思是,这样做很容易:
.container {
position:absolute;
left: 50%;
top: 50%;
overflow:visible;
}
.content {
position:relative;
margin:-50% 50% 50% -50%;
}
对?容器的左上角将位于屏幕的中心,并且负边距将使内容神奇地重新出现在页面的绝对中心!http://jsfiddle.net/rJPPc/
错误!可以水平放置,但可以垂直放置...哦,我知道了。显然,在css中,当以%设置顶部边距时,该值的计算方式始终是相对于包含块的宽度的百分比。像苹果和桔子!如果您不信任我或Mozilla doco,请通过调整内容宽度来玩弄上面的小提琴,并感到惊讶。
现在,以CSS为生,我并不想放弃。同时,我更喜欢简单的事情,因此我借用了捷克CSS专家的发现,并使其成为一个有用的小提琴。简而言之,我们创建一个表,其中vertical-align设置为中:
<table class="super-centered"><tr><td>
<div class="content">
<p>I am centered like a boss!</p>
</div>
</td></tr></table>
然后,内容的位置会以良好的旧边距:0自动调整;:
.super-centered {position:absolute; width:100%;height:100%;vertical-align:middle;}
.content {margin:0 auto;width:200px;}
按承诺工作中的小提琴:http : //jsfiddle.net/teDQ2/
我在这里拥有的是一种“居中”方法,该方法可确保您尝试居中的元素不仅处于“固定”或“绝对”位置,而且还确保您居中的元素小于其父元素,即居中并且相对于的元素是父元素,如果元素的父元素小于元素本身,则会将DOM掠夺到下一个父元素,并相对于其居中。
$.fn.center = function () {
/// <summary>Centers a Fixed or Absolute positioned element relative to its parent</summary>
var element = $(this),
elementPos = element.css('position'),
elementParent = $(element.parent()),
elementWidth = element.outerWidth(),
parentWidth = elementParent.width();
if (parentWidth <= elementWidth) {
elementParent = $(elementParent.parent());
parentWidth = elementParent.width();
}
if (elementPos === "absolute" || elementPos === "fixed") {
element.css('right', (parentWidth / 2) - elementWidth / 2 + 'px');
}
};
这是我的版本。在查看这些示例后,我可能会更改它。
$.fn.pixels = function(property){
return parseInt(this.css(property));
};
$.fn.center = function(){
var w = $($w);
return this.each(function(){
$(this).css("position","absolute");
$(this).css("top",((w.height() - $(this).height()) / 2) - (($(this).pixels('padding-top') + $(this).pixels('padding-bottom')) / 2) + w.scrollTop() + "px");
$(this).css("left",((w.width() - $(this).width()) / 2) - (($(this).pixels('padding-left') + $(this).pixels('padding-right')) / 2) + w.scrollLeft() + "px");
});
};
不需要jQuery的
我用它来使Div元素居中。CSS样式
.black_overlay{
display: none;
position: absolute;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
background-color: black;
z-index:1001;
-moz-opacity: 0.8;
opacity:.80;
filter: alpha(opacity=80);
}
.white_content {
display: none;
position: absolute;
top: 25%;
left: 25%;
width: 50%;
height: 50%;
padding: 16px;
border: 16px solid orange;
background-color: white;
z-index:1002;
overflow: auto;
}
开放元素
$(document).ready(function(){
$(".open").click(function(e){
$(".black_overlay").fadeIn(200);
});
});
我对托尼·洛斯答案的更新
这是我现在认真使用的答案的修改后的版本。我想我会分享一下,因为它可以为您可能遇到的各种情况添加更多功能,例如,不同类型的position
或者只需要水平/垂直居中,而不是两者都需要。
center.js:
// We add a pos parameter so we can specify which position type we want
// Center it both horizontally and vertically (dead center)
jQuery.fn.center = function (pos) {
this.css("position", pos);
this.css("top", ($(window).height() / 2) - (this.outerHeight() / 2));
this.css("left", ($(window).width() / 2) - (this.outerWidth() / 2));
return this;
}
// Center it horizontally only
jQuery.fn.centerHor = function (pos) {
this.css("position", pos);
this.css("left", ($(window).width() / 2) - (this.outerWidth() / 2));
return this;
}
// Center it vertically only
jQuery.fn.centerVer = function (pos) {
this.css("position", pos);
this.css("top", ($(window).height() / 2) - (this.outerHeight() / 2));
return this;
}
在我的<head>
:
<script src="scripts/center.js"></script>
用法示例:
$("#example1").centerHor("absolute")
$("#example2").centerHor("fixed")
$("#example3").centerVer("absolute")
$("#example4").centerVer("fixed")
$("#example5").center("absolute")
$("#example6").center("fixed")
它可以与任何定位类型一起使用,并且可以轻松地在整个站点中使用,也可以轻松地移植到您创建的任何其他站点。没有其他烦人的解决方法,可以正确地使内容居中。
希望这对外面的人有用!请享用。
有很多方法可以做到这一点。我的对象通过display:none隐藏在BODY标记内,因此相对于BODY定位。使用$(“#object_id”)。show()之后,我调用$(“#object_id”)。center()
我使用position:absolute,因为模态窗口可能大于设备窗口,尤其是在小型移动设备上,在这种情况下,如果定位固定,则某些模态内容可能无法访问。
这是我根据其他人的回答和我的具体需求而设计的口味:
$.fn.center = function () {
this.css("position","absolute");
//use % so that modal window will adjust with browser resizing
this.css("top","50%");
this.css("left","50%");
//use negative margin to center
this.css("margin-left",(-1*this.outerWidth()/2)+($(window).scrollLeft())+"px");
this.css("margin-top",(-1*this.outerHeight()/2)+($(window).scrollTop())+"px");
//catch cases where object would be offscreen
if(this.offset().top<0)this.css({"top":"5px","margin-top":"0"});
if(this.offset().left<0)this.css({"left":"5px","margin-left":"0"});
return this;
};
left: 50%
,top: 50%
然后可以使用转换平移将其中心点正确地移到上方。但是,通过这种方法,Chrome之类的浏览器之后会扭曲/模糊您的文本,这通常是不希望的。最好抓住窗口的宽度/高度,然后根据该位置放置左/上,而不是弄乱转换。防止失真,并且可以在我测试过的所有浏览器上使用。
通常,我只会使用CSS来执行此操作...但是由于您要求使用jQuery来执行此操作的方法...
以下代码将div在其容器内水平和垂直居中:
$("#target").addClass("centered-content")
.wrap("<div class='center-outer-container'></div>")
.wrap("<div class='center-inner-container'></div>");
body {
margin : 0;
background: #ccc;
}
.center-outer-container {
position : absolute;
display: table;
width: 100%;
height: 100%;
}
.center-inner-container {
display: table-cell;
vertical-align: middle;
text-align: center;
}
.centered-content {
display: inline-block;
text-align: left;
background: #fff;
padding : 20px;
border : 1px solid #000;
}
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.1.min.js"></script>
<div id="target">Center this!</div>
(另请参阅此小提琴)