有没有一种方法可以对颜色和SVG进行分层以制作背景

时间:2020-09-15 04:31:52

标签: css background background-image background-color

是否可以具有背景色,然后在其前面具有SVG文件,然后在其前面具有不透明的另一层?我试图为网站的背景做一个很酷的效果。预先感谢!

1 个答案:

答案 0 :(得分:0)

为此,您可以使用z-index。 这应该可行,在here

上有一个实时示例
<body class='main'>
  Hello
  <img src="https://upload.wikimedia.org/wikipedia/commons/1/17/Yin_yang.svg" />
  <div class='overlay'></div>
</body>

<style>
  body{
   background-color:#424242;
   background-size: 'cover'
}
 
/*overlay styling, source: https://www.w3schools.com/howto/howto_css_overlay.asp */
.overlay{
  position: fixed; /* Sit on top of the page content */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(4,0,0,0.5); /* Black background with opacity */
  z-index: 2;
}
</style>