Exemple
Comment spécifier un background-image fixe:
body
{
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
}
Essayez - le vous - même » Plus "Try it Yourself" exemples ci - dessous.
Définition et utilisation
La propriété background-attachment définit si une image de fond est fixe ou défile avec le reste de la page.
Valeur par défaut: | scroll |
---|---|
Hérité: | no |
Animable: | no. Read about animatable |
Version: | CSS1 |
Syntaxe JavaScript: | object .style.backgroundAttachment="fixed" Try it |
support du navigateur
Les chiffres du tableau indiquent la première version du navigateur qui prend en charge entièrement la propriété.
Propriété | |||||
---|---|---|---|---|---|
background-attachment | 1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
Note: Internet Explorer 8 et les versions antérieures ne prennent pas en charge plusieurs images d'arrière - plan sur un seul élément.
Syntaxe CSS
background-attachment: scroll|fixed|local|initial|inherit;
propriété valeurs
Valeur | La description |
---|---|
scroll | Les rouleaux de fond le long de l'élément. Ceci est par défaut |
fixed | Le fond est fixe par rapport à la fenêtre |
local | Les rouleaux de fond ainsi que le contenu de l'élément |
initial | Définit cette propriété à sa valeur par défaut. Lisez à propos initial |
inherit | Hérite cette propriété de son élément parent. Lisez à propos de hériteront |
Autres exemples
Exemple
Comment créer un simple effet de défilement parallaxe (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;
}
Essayez - le vous - même » Pages associées
Tutoriel CSS: CSS Contexte
Référence HTML DOM: propriété backgroundAttachment