使用 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>

更新于: 2020-06-25

56 次浏览

开始你的 职业生涯

通过完成课程获得认证

开始
广告