嗨,请看一下我的网站,下面是有问题的代码片段,因为我对 css-html 方法没有任何运气,所以我必须将图像居中。问题是因为它设置为等待 document.ready() 有时它会将我所有的图像放在右边。我试过 window.load() 但图像以较小的窗口大小在屏幕外居中。也有人建议我试试
<div style="
background: url('Assets/image.png') center center no-repeat;
width: 100%;
height: 500px;
">
</div>
但这会导致它失去响应能力。我四处搜索,但找不到解决方案,我只需要我的图像(和一个表格)保持居中,并让图像随窗口大小缩小。
<script type="text/javascript"> //Centering Script
$(document).ready(function () {
updateContainer();
$(window).resize(function() {
updateContainer();
});
});
function updateContainer() {
(function ($) {
$.fn.vAlign = function() {
return this.each(function(i){
var h = $(this).height();
var oh = $(this).outerHeight();
var mt = (h + (oh - h)) / 2;
$(this).css("margin-top", "-" + mt + "px");
$(this).css("top", "50%");
$(this).css("position", "absolute");
});
};
})(jQuery);
(function ($) {
$.fn.hAlign = function() {
return this.each(function(i){
var w = $(this).width();
var ow = $(this).outerWidth();
var ml = (w + (ow - w)) / 2;
$(this).css("margin-left", "-" + ml + "px");
$(this).css("left", "50%");
$(this).css("position", "absolute");
});
};
})(jQuery);