0

我正在努力寻找一些代码来在内容加载时阻止我的图像占位符的颜色。我主页上的内容从 dB 中获取数据,加载大约需要 3 秒,具体取决于连接速度。使用 Wordpress,我正在尝试创建类似于 http://www.lyricsandtype.com/ 上的纯粉色和Theo http://www.theo-theo.com/上的图像网格上的多色

任何指针将不胜感激!谢谢,N

4

1 回答 1

0

看起来它是一个简单的背景颜色。当图像尚未加载时它是可见的,然后它就被覆盖了。background-color您可以像这样为每个类创建不同的类:

.blue{ background-color: blue;}
.yellow{ background-color: yellow;}
.red{ background-color: red;}

然后通过像这样调用其类将背景颜色应用于容器:

<div class="red">the div content</div>
<div class="yellow">the div content</div>

是你所追求的吗?

于 2012-12-20T13:24:48.637 回答