## background-blend-mode属性
background-blend-mode 属性定义了背景层的混合模式(图片与颜色)。
JavaScript 语法:object.style.backgroundBlendMode="screen"
## CSS 语法
~~~
background-blend-mode: normal|multiply|screen|overlay|darken|lighten|color-dodge|saturation|color|luminosity;
~~~
* * *
## 属性值
| 值 | 描述 | 实例 |
| --- | --- | --- |
| normal | 默认值。设置正常的混合模式。 | [尝试一下 »](https://www.w3cschool.cn/tryrun/showhtml/playcss_background-blend-mode) |
| multiply | 正片叠底模式。 | [尝试一下 »](https://www.w3cschool.cn/tryrun/showhtml/playcss_background-blend-mode-multiply) |
| screen | 滤色模式。 | [尝试一下 »](https://www.w3cschool.cn/tryrun/showhtml/playcss_background-blend-mode-screen) |
| overlay | 叠加模式。 | [尝试一下 »](https://www.w3cschool.cn/tryrun/showhtml/playcss_background-blend-mode-overlay) |
| darken | 变暗模式。 | [尝试一下 »](https://www.w3cschool.cn/tryrun/showhtml/playcss_background-blend-mode-darken) |
| lighten | 变亮模式。 | [尝试一下 »](https://www.w3cschool.cn/tryrun/showhtml/playcss_background-blend-mode-lighten) |
| color-dodge | 颜色减淡模式。 | [尝试一下 »](https://www.w3cschool.cn/tryrun/showhtml/playcss_background-blend-mode-color-dodge) |
| saturation | 饱和度模式。 | [尝试一下 »](https://www.w3cschool.cn/tryrun/showhtml/playcss_background-blend-mode-saturation) |
| color | 颜色模式。 | [尝试一下 »](https://www.w3cschool.cn/tryrun/showhtml/playcss_background-blend-mode-color) |
| luminosity | 亮度模式。 | [尝试一下 »](https://www.w3cschool.cn/tryrun/showhtml/playcss_background-blend-mode-luminosity) |
* * *
**实例**
```
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool教程(w3cschool.cn)</title>
<style>
body {background-color: yellow;}
div {
width: 290px;
height: 69px;
background-size: 290px 69px;
background-repeat:no-repeat;
background-image: linear-gradient(to right, green 0%,white 100%), url('/statics/images/w3c/logo.png');
background-blend-mode: color-dodge;
}
</style>
</head>
<body>
<div></div>
<p><b>注意:</b> Internet Explorer 不支持 background-blend-mode 属性。</p>
</body>
</html>
```
- CSS常用样式控制
- background--背景
- Text--文本
- CSS属性
- align-*
- animation-*
- appearance
- backface-visibility
- background
- background-attachment
- background-blend-mode
- background-clip
- background-color
- background-image
- background-origin
- background-position
- background-repeat
- background-size
- border
- border-bottom
- border-bottom-color
- border-bottom-left-radius
- border-bottom-right-radius
- border-bottom-style
- border-bottom-width
- border-collapse
- border-color
- border-image
- border-image-outset
- border-image-repeat
- border-image-source
- border-image-width
- Border-left
- border-left-color
- border-left-style
- border-left-width
- border-image-slice
- border-radius
- border-right
- border-right-color
- border-right-style
- border-right-width
- border-spacing
- border-style
- border-top
- border-top-color
- border-top-left-radius
- border-top-right-radius
- border-top-style
- border-top-width
- border-width
- bottom
- box-shadow
- box-sizing
- caption-side
- clear
- clip
- color
- column-count
- column-gap
- column-rule
- column-rule-color
- column-rule-style
- column-rule-width
- column-span
- column-width
- columns
- content
- counter-increment
- counter-reset
- cursor
- direction
- display
- Empty-cells
- filter(滤镜)
- CSS 伪元素选择器
- :active 选择器
- :after 选择器
- :before 选择器
- :checked 选择器
- :disabled 选择器
- :empty 选择器
- :enabled 选择器
- :first-child 伪元素
- :first-letter 伪元素
- :first-line 伪元素
- :first-of-type 选择器
- :focus 选择器
- :hover 选择器