且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

等待加载完整图像时占位符背景/图像?

更新时间:2023-12-05 16:36:58

不是直接引用图像,而是将其粘贴在DIV中,如下所示:

Instead of referencing the image directly, stick it within a DIV, like the following:

<div class="placeholder">
    <div class="myimage" style="background-image: url({somedynamicimageurl})"><img /></div>
</div>

然后在您的CSS中:

.placeholder {
    width: 300;
    height: 300;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('my_placeholder.png');
}