blob: 436d54871419aa2fdbe00535fa2d3a5448dec238 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
---
title: background-blend-mode
slug: Web/CSS/background-blend-mode
tags:
- Composición CSS
- Propiedad CSS
translation_of: Web/CSS/background-blend-mode
---
<p>{{CSSRef()}}</p>
<h2 id="Summary" name="Summary">Resumen</h2>
<p>La propiedad CSS <strong><code>background-blend-mode</code></strong> describe cómo las imágenes de fondo y el color de fondo del elemento deben mezclar entre sí. </p>
<p>Los modos de fusión deben ser definidos en el mismo orden que la propiedad CSS {{cssxref("background-image")}}. Si la cantidad de modos de fusión y de imagenes de fondo no son iguales, se repetirán y/o truncarán hasta igualar las cantidades.</p>
<p>{{cssinfo}}</p>
<h2 id="Syntax" name="Syntax">Sintaxis</h2>
<pre class="brush:css">/* Un valor */
background-blend-mode: normal;
/* Dos valores, uno por fondo */
background-blend-mode: darken, luminosity;
/* Valores globales */
background-blend-mode: initial;
background-blend-mode: inherit;
background-blend-mode: unset;
</pre>
<h3 id="Values" name="Values">Valores</h3>
<dl>
<dt><code><blend-mode></code></dt>
<dd>Es un {{cssxref("<blend-mode>")}} que denota el modo de fusión que se aplicará. Puede haber varios valores, separados por coma.</dd>
</dl>
<h2 id="Examples" name="Examples">Ejemplos</h2>
<select id="select">
<option>normal</option>
<option>multiply</option>
<option selected>screen</option>
<option>overlay</option>
<option>darken</option>
<option>lighten</option>
<option>color-dodge</option>
<option>color-burn</option>
<option>hard-light</option>
<option>soft-light</option>
<option>difference</option>
<option>exclusion</option>
<option>hue</option>
<option>saturation</option>
<option>color</option>
<option>luminosity</option>
</select></pre>
<pre class="brush: css" class="hidden">#div {
width: 300px;
height: 300px;
background: url('https://mdn.mozillademos.org/files/8543/br.png'),url('https://mdn.mozillademos.org/files/8545/tr.png');
background-blend-mode: screen;
}</pre>
<pre class="brush: js" class="hidden">document.getElementById("select").onchange = function(event) {
document.getElementById("div").style.backgroundBlendMode = document.getElementById("select").selectedOptions[0].innerHTML;
}
console.log(document.getElementById('div'));</pre>
<p>{{ EmbedLiveSample('Examples', "330", "330") }}</p>
<h2 id="Specifications" name="Specifications">Especificaciones</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Especificación</th>
<th scope="col">Estado</th>
<th scope="col">Comentarios</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('Compositing', '#background-blend-mode', 'background-blend-mode') }}</td>
<td>{{ Spec2('Compositing') }}</td>
<td>Definición inicial</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">Compatibilidad en navegadores</h2>
{{Compat("css.properties.background-blend-mode")}}
<h2 id="See_also" name="See_also">Véase también</h2>
<ul>
<li>{{cssxref("<blend-mode>")}}</li>
<li>{{cssxref("mix-blend-mode")}}</li>
</ul>
|