背景混合模式
在CSS中可以使用 background-blend-mode 来实现元素背景的混合:

.blend-1 {
background-image: url(duomly.nyc3.digitaloceanspaces.com);
width: 100vw;
height: 500px;
background-size: cover;
}

.blend-2 {
background-image: url(duomly.nyc3.digitaloceanspaces.com);
width: 100vw;
height: 500px;
background-color: #20126f;
background-size: cover;
background-blend-mode: overlay;



#每天一个知识点#
展开
评论