我试图通过计算父元素和子元素的宽度和高度差异以及使用差异作为边距或填充来在其父元素中横向和垂直居中。
我正在使用这个公式计算必要的空间:
($outerElement.outerWidth() - $innerElement.outerWidth() / 2;
($outerElement.outerHeight() - $innerElement.outerHeight() / 2;
然后,我使用一个函数循环一个方向数组,该函数允许我使用函数参数更改应用于子元素的 css。基本上,该功能允许我选择是否要使用边距或填充。
问题
虽然我的代码返回顶部、右侧、左侧和底部的预期值,但它不使用填充来实现吗?知道是什么原因造成的吗?
HTML
<div id="demo" class="outer">
<div class="inner">
</div>
</div>
CSS
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
.outer {
width:500px;
height:200px;
border:1px solid black;
margin:20px;
}
.inner {
width:100px;
height:100px;
background-color:grey;
}
JAVASCRIPT
var $outer = $(".outer");
var $inner = $(".inner");
var getSpace = function(axis) {
if (axis.toLowerCase() == "x") {
return ($outer.outerWidth() - $inner.outerWidth()) / 2;
} else if (axis.toLowerCase() == "y") {
return ($outer.outerHeight() - $inner.outerHeight()) / 2;
}
}
var renderStyle = function(spacingType) {
$.each(["top", "right", "bottom", "left"], function(index, direction) {
if (direction == "top" || direction == "bottom") {
$inner.css(spacingType + "-" + direction, getSpace("y"));
console.log(getSpace("y"));
} else if (direction == "right" || direction == "left") {
$inner.css(spacingType + "-" + direction, getSpace("x"));
console.log(getSpace("x"));
}
});
};
renderStyle("padding");
CODEPEN 链接-链接