Contoh
Cara menentukan tetap background-image:
body
{
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
}
Cobalah sendiri " Lebih "Try it Yourself" contoh di bawah ini.
Definisi dan Penggunaan
Properti background-attachment menetapkan apakah gambar latar belakang tetap atau gulungan dengan sisa halaman.
nilai default: | scroll |
---|---|
mewarisi: | no |
animatable: | no. Read about animatable |
Versi: | CSS1 |
sintaks JavaScript: | object .style.backgroundAttachment="fixed" Try it |
Dukungan Browser
Angka-angka dalam tabel menentukan versi browser pertama yang sepenuhnya mendukung properti.
Milik | |||||
---|---|---|---|---|---|
background-attachment | 1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
Note: Internet Explorer 8 dan versi sebelumnya tidak mendukung beberapa gambar latar belakang pada satu elemen.
CSS Syntax
background-attachment: scroll|fixed|local|initial|inherit;
Nilai properti
Nilai | Deskripsi |
---|---|
scroll | Gulungan latar belakang bersama dengan elemen. Ini adalah default |
fixed | latar belakang tetap berkaitan dengan viewport |
local | Gulungan latar belakang bersama dengan isi elemen |
initial | Set properti ini ke nilai default. Baca tentang awal |
inherit | Mewarisi properti ini dari elemen induknya. Baca tentang mewarisi |
Contoh lebih
Contoh
Cara membuat efek parallax scrolling sederhana (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;
}
Cobalah sendiri " Pages terkait
CSS tutorial: CSS Background
Referensi HTML DOM: properti backgroundAttachment