-1

我想制作带有点的背景图像。抱歉,我无法解释。我对附加图像没有足够的声誉。请访问:<< hisset.in >> 并观看背景图片

4

1 回答 1

1

这是一个 HTML 和 CSS 问题。

使用两个 div,一个用于背景,另一个用于点图层。

.background {
  heigth: 100%;
  width: 100%;
  background: url('path/to/my/background.png');
}

.dots {
  heigth: 100%;
  width: 100%;
  background: url('path/to/my/dotslayer.png') repeat; //repeat the image all over the div
}

并将此图像用作“dotslayer”(或其他类似图像):http ://www.hisset.in/images/dark/backgroundOverlay.png

于 2013-02-23T19:11:20.123 回答