Exemplu
Cum se specifica un fundal imagine fixă:
body
{
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
}
Încearcă - l singur » Mai multe "Try it Yourself" - "Try it Yourself" exemplele de mai jos.
Definiție și utilizare
Proprietatea background-atașare stabilește dacă o imagine de fundal este fix sau suluri cu restul paginii.
Valoare implicită: | scroll |
---|---|
Mostenit: | no |
Animatable: | no. Read about animatable |
Versiune: | CSS1 |
sintaxa JavaScript: | object .style.backgroundAttachment="fixed" Try it |
Suport pentru browser-
Numerele din tabel specifica prima versiune de browser care acceptă pe deplin proprietatea.
Proprietate | |||||
---|---|---|---|---|---|
background-attachment | 1.0 | 4 | 1.0 | 1.0 | 3.5 |
Note: Internet Explorer 8 și versiunile anterioare nu acceptă mai multe imagini de fundal pe un singur element.
CSS Sintaxa
background-attachment: scroll|fixed|local|initial|inherit;
Valori de proprietate
Valoare | Descriere |
---|---|
scroll | Sulurile de fundal, împreună cu elementul. Acest lucru este implicit |
fixed | Fundalul este fixat în ceea ce privește portul de vizualizare |
local | Sulurile de fundal, împreună cu conținutul elementului |
initial | Setează această proprietate la valoarea implicită. Citiți despre inițială |
inherit | Mosteneste această proprietate de la elementul părinte. Citiți despre moștenesc |
Mai multe exemple
Exemplu
Cum de a crea un efect de defilare paralaxă simplu (create an illusion of 3D depth) a (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;
}
Încearcă - l singur » Pagini similare
Tutorial CSS: CSS Context
HTML DOM referință: Proprietate backgroundAttachment