31

我在<td>标签上应用了以下 CSS 类:

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

如何使用 JavaScript/jQuery 判断背景图像已完成加载?

4

6 回答 6

56

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

例如:

var bgImg = new Image();
bgImg.onload = function(){
   myDiv.style.backgroundImage = 'url(' + bgImg.src + ')';
};
bgImg.src = imageLocation;
于 2009-12-18T11:22:38.297 回答
4

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

于 2009-12-18T11:20:45.913 回答
2

这篇文章可能会对你有所帮助。相关部分:

// 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" )
        );
    }
);

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

于 2009-12-18T11:26:56.687 回答
2

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

$(function( )
{
    var a = new Image;
    a.onload = function( ){ /* do whatever */ };
    a.src = $( 'body' ).css( 'background-image' );
});
于 2009-12-18T11:56:17.333 回答
1
于 2021-11-03T18:31:57.940 回答
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>
于 2017-10-23T12:23:25.930 回答