使用 jQuery 垂直对齐元素(通用解决方案)

发布于 2024-11-17 00:22:55 字数 557 浏览 2 评论 0原文

我正在尝试为元素的垂直对齐提供跨浏览器解决方案(它已被记录多次,我不确定将其归属于何处)。它工作得很好,除非使用 Chrome 时元素包含图像。这是因为 Chrome 确定图像的高度为 0,因为我相信它还没有加载。如何修改下面的 jQuery 来解决这个问题?

谢谢!

$(document).ready(function() { 
  $(".valign").vAlign();
});


(function ($) {
  $.fn.vAlign = function() {
    return this.each(function(i){

        var ah = $(this).height();
        var ph = $(this).parent().height();
        var mh = Math.ceil((ph - ah) / 2);
        if (mh < 0) {
            mh=0;
        }
        $(this).css('margin-top', mh);
    });
  };
})(jQuery);

I am attempting to have a cross browser solution for vertical alignment of an element (it has been documented so many times that I'm not sure where to attribute it). It works great except for when using Chrome where the element contains an image. This is because Chrome determines the height of the image is 0 because it hasn't loaded it yet I believe. How do I modify the below jQuery to fix this?

Thanks!

$(document).ready(function() { 
  $(".valign").vAlign();
});


(function ($) {
  $.fn.vAlign = function() {
    return this.each(function(i){

        var ah = $(this).height();
        var ph = $(this).parent().height();
        var mh = Math.ceil((ph - ah) / 2);
        if (mh < 0) {
            mh=0;
        }
        $(this).css('margin-top', mh);
    });
  };
})(jQuery);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓦然回首 2024-11-24 00:22:55

只需将 $(document).ready() 替换为 $(window).load() 即可。在加载所有引用的图像之前它不会执行。

Just replace your $(document).ready() with $(window).load(). It won't execute until all the referenced images load.

三月梨花 2024-11-24 00:22:55

您需要首先加载目标图像并使用回调来欺骗高度计算。所以:

...return this.each(function(i){
    $('targetImagePlaceholder').load('image/url.jpg', function(){
        var ah = $this.height():
        ...

应该为你工作。

You need to load the targeted image first and use the callback to trick the height calc. So:

...return this.each(function(i){
    $('targetImagePlaceholder').load('image/url.jpg', function(){
        var ah = $this.height():
        ...

Should work for ya.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文