Ejemplo
Cómo especificar una imagen de fondo fija:
body
{
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
}
Inténtalo tú mismo " Más "Try it Yourself" ejemplos a continuación.
Definición y Uso
La propiedad background-attachment establece si una imagen de fondo se fija o se desplaza con el resto de la página.
Valor por defecto: | scroll |
---|---|
Heredado: | no |
animatable: | no. Read about animatable |
Versión: | CSS1 |
la sintaxis de JavaScript: | object .style.backgroundAttachment="fixed" Try it |
Soporte para el navegador
Los números de la tabla especifican la primera versión del navegador que es totalmente compatible con la propiedad.
Propiedad | |||||
---|---|---|---|---|---|
background-attachment | 1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
Note: Internet Explorer 8 y versiones anteriores no son compatibles con múltiples imágenes de fondo de un elemento.
sintaxis CSS
background-attachment: scroll|fixed|local|initial|inherit;
Valores de propiedad
Valor | Descripción |
---|---|
scroll | Los rollos de fondo junto con el elemento. Esto es por defecto |
fixed | El fondo está fija con respecto al acceso visual |
local | Los rollos de fondo junto con los contenidos del elemento |
initial | Establece esta propiedad a su valor por defecto. Lea acerca inicial |
inherit | Hereda esta propiedad de su elemento padre. Lee sobre heredar |
Más ejemplos
Ejemplo
Cómo crear un simple efecto de scroll parallax (create an illusion of 3D depth) :
.fixed-bg {
/* The background image */
background-image: url("img_tree.gif");
/* Set a specified height, or the minimum height for the background image */
min-height: 500px;
/* Set background image to fixed
(don't scroll along with the page) */
background-attachment: fixed;
/* Center the background
image */
background-position: center;
/* Set the background image to no repeat */
background-repeat: no-repeat;
/* Scale the background
image to be as large as possible */
background-size:
cover;
}
Inténtalo tú mismo " Páginas relacionadas
CSS tutorial: Antecedentes CSS
Referencia HTML DOM: propiedad backgroundAttachment