我想制作带点的背景图片。对不起,我无法解释。我没有附加图像的声誉。请访问:<< hisset.in>>并观看背景图片
答案 0 :(得分: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