使用 CSS 混合每个背景层的混合模式
使用 background-blend-mode 属性使用 CSS 设置每个背景层的混合模式。您可以尝试运行以下代码,使用 background-blend-mode 属性并将模式设置为“darken”
示例
<!DOCTYPE html> <html> <head> <style> #myDIV { width: 250px; height: 170px; background-repeat: no-repeat, repeat; background-image:url("https://tutorialspoint.com/assets/videotutorials/courses/3d_animation_online_training/380_course_211_image.jpg"),url( https://tutorialspoint.com/latest/dc.js.png); background-blend-mode: darken; } </style> </head> <body> <h1>Set Blend Mode</h1> <div id = "myDIV"></div> </body> </html>
广告