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
|
---
title: <gradient>
slug: Web/CSS/gradient
tags:
- CSS
- CSS tipo de datos
- Degradado
- Diseño
- Gradiente
- Referencia
- graficos
translation_of: Web/CSS/gradient
original_slug: Web/CSS/Gradiente
---
<div>{{CSSRef}}</div>
<h2 id="Resumen">Resumen</h2>
<p>El tipo de datos <a href="/en-US/docs/CSS" title="CSS">CSS</a> <code><gradient></code> indica un tipo de {{cssxref("<image>")}} que consiste de una transición progresiva entre dos o más colores (Degradado).</p>
<p>{{EmbedInteractiveExample("pages/css/type-gradient.html")}}</p>
<p>Un gradiente de CSS no es un {{cssxref("<color>")}} pero tampoco es una imagen con <a href="/es/docs/Web/CSS/image#no_intrinsic" title="CSS/image#no_intrinsic">dimensiones intrínsecas</a>; es decir, que no tiene tamaño natural o preferido, ni una relación preferida. Su tamaño concreto coincidirá con los elementos a los que se aplica.</p>
<p><strong>Funciones de las Gradientes</strong></p>
<p>Hay tres tipos de gradientes de color:</p>
<ul>
<li id="linear-gradient"><em><strong>Linear gradients</strong>(gradiente lineal)</em>, generados por la función {{cssxref("linear-gradient", "linear-gradient()")}}, donde el color se desvanece suavemente a lo largo de una línea imaginaria.
<pre class="brush: html" style="display: none;">A rainbow made from a gradient
</pre>
<pre class="brush: css">body {
background: -moz-linear-gradient(left,red,orange,yellow, green, blue,indigo,violet);
background: -webkit-linear-gradient(left,red,orange,yellow, green, blue,indigo,violet);
background: -ms-linear-gradient(left,red,orange,yellow, green, blue,indigo,violet);
background: -o-linear-gradient(left,red,orange,yellow, green, blue,indigo,violet);
background: linear-gradient(to right,red,orange,yellow, green, blue,indigo,violet);
}</pre>
<p>{{ EmbedLiveSample('linear-gradient', 600, 20) }}</p>
</li>
<li id="radial-gradient"><em><strong>Radial gradient </strong>(gradientes radiales)</em>, generados por la función {{cssxref("radial-gradient", "radial-gradient()")}}. Cuanto más lejos de un origen sea un punto, más lejos del color original será.
<pre class="brush: html" style="display: none;">Radial gradient
</pre>
<pre class="brush: css">body {
background: -moz-radial-gradient(red, yellow, rgb(30, 144, 255)) repeat scroll 0% 0% transparent;
background: radial-gradient(red, yellow, rgb(30, 144, 255));
}
</pre>
<p>{{ EmbedLiveSample('radial-gradient', 600, 20) }}</p>
</li>
<li id="repeating-gradient"><em><strong>Repeating gradient </strong>(gradientes de repetición), </em>donde se repiten gradientes lineales o radiales tanto como sea necesario para llenar toda la caja.
<pre class="brush: html" style="display: none;">Repeating gradient
</pre>
<pre class="brush: css">body {
background: -moz-repeating-linear-gradient(top left -45deg, red, red 5px, white 5px, white 10px);
background: repeating-linear-gradient(to top left, red, red 5px, white 5px, white 10px);
} </pre>
<p>{{ EmbedLiveSample('repeating-gradient', 600, 20) }}</p>
</li>
</ul>
<h2 id="Interpolación">Interpolación</h2>
<p>Al igual que con cualquier caso de interpolación de colores, los gradientes se calculan en el espacio de color alfa-premultiplicado. Esto impide que sombras de gris inesperadas aparezcan cuando el color o la opacidad están variando. (debe tener en cuenta que los navegadores mas antiguos no tienen incorporado este tipo de comportamient cuando utiliza la palabra clave "<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#transparent_keyword">transparent </a>" del inglés transparente ( para más información hacer clic en el link))</p>
<h2 id="Especificación">Especificación</h2>
<table class="standard-table">
<thead>
<tr>
<th>Especificación</th>
<th>Estado</th>
<th>Comentario</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Images', '#gradients', '<gradient>')}}</td>
<td>{{Spec2('CSS3 Images')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidad_del_navegador">Compatibilidad del navegador</h2>
<p>Cada tipo de gradiente tiene una matriz de compatibilidad diferente. Por favor, consulte cada artículo individualmente.</p>
<h2 id="Ver_también">Ver también</h2>
<ul>
<li><a href="/en-US/docs/CSS/Using_CSS_gradients" title="Using gradients">Usando Gradientes CSS</a>, {{cssxref("<gradient>")}}, {{cssxref("linear-gradient", "linear-gradient()")}}, {{cssxref("radial-gradient", "radial-gradient()")}}, {{cssxref("repeating-linear-gradient", "repeating-linear-gradient()")}}, {{cssxref("repeating-radial-gradient", "repeating-radial-gradient()")}}</li>
</ul>
|