如何验证加载的背景(css)图像?

时间:2009-12-18 11:17:07

标签: javascript jquery css load background-image

我有以下CSS类

.bg {
   background-image: url('bg.jpg');
   display: none;
}

我正在申请TD标签。

我的问题是如何判断JavaScript / jQuery背景图像是否已完成加载?

谢谢。

更新:添加了显示属性。 由于我的主要目标是将其切换到视图中。

5 个答案:

答案 0 :(得分:43)

我知道这样做的唯一方法是使用Javascript加载图像,然后将该图像设置为背景。

例如:

var bgImg = new Image();
bgImg.onload = function(){
   myDiv.style.backgroundImage = 'url(' + bgImg.src + ')';
};
bgImg.src = imageLocation;

答案 1 :(得分:3)

在初始页面加载时将类提供给visibility:hidden的div。这样,当您将类分配给表格单元格时,它已经存在于浏览器缓存中。

答案 2 :(得分:3)

@Jamie Dixon - 他没有说他想对背景图片做任何事情,只知道什么时候加载......

$(function( )
{
    var a = new Image;
    a.onload = function( ){ /* do whatever */ };
    a.src = $( 'body' ).css( 'background-image' );
});

答案 3 :(得分:2)

This article may help you。相关部分:

// Once the document is loaded, check to see if the
// image has loaded.
$(
    function(){
        var jImg = $( "img:first" );

        // Alert the image "complete" flag using the
        // attr() method as well as the DOM property.
        alert(
            "attr(): " +
            jImg.attr( "complete" ) + "\n\n" +

            ".complete: " +
            jImg[ 0 ].complete + "\n\n" +

            "getAttribute(): " +
            jImg[ 0 ].getAttribute( "complete" )
        );
    }
);

基本上选择背景图像并进行检查以查看它是否已加载。

答案 4 :(得分:0)

您还可以提供一个简单地用div / background替换img标记的函数,这样您就可以从onload属性和div的灵活性中受益。

当然,您可以根据需要微调代码,但在我的情况下,我还要确保保留宽度或高度,以便更好地控制我的期望。

我的代码如下:

<img src="imageToLoad.jpg" onload="imageLoadedTurnItAsDivBackground($(this), true, '')">

<style>
.img-to-div {
    background-size: contain;
}
</style>

<script>
// Background Image Loaded
function imageLoadedTurnItAsDivBackground(tag, preserveHeight, appendHtml) {

    // Make sure parameters are all ok
    if (!tag || !tag.length) return;
    const w = tag.width();
    const h = tag.height();

    if (!w || !h) return;

    // Preserve height or width in addition to the image ratio
    if (preserveHeight) {
        const r = h/w;
        tag.css('width', w * r);
    } 
    else {
        const r = w/h;
        tag.css('height', h * r);
    }
    const src = tag.attr('src');

    // Make the img disappear (one could animate stuff)
    tag.css('display', 'none');

    // Add the div, potentially adding extra HTML inside the div
    tag.after(`
        <div class="img-to-div" style="background-image: url(${src}); width: ${w}px; height:${h}px">${appendHtml}</div>
    `);

    // Finally remove the original img, turned useless now
    tag.remove();
}
</script>