ตัวอย่าง
วิธีการระบุภาพพื้นหลังคงที่:
body
{
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
}
ลองตัวเอง» เพิ่มเติม "Try it Yourself" ตัวอย่างด้านล่าง
ความหมายและการใช้งาน
คุณสมบัติพื้นหลังแนบชุดไม่ว่าจะเป็นภาพพื้นหลังได้รับการแก้ไขหรือเลื่อนกับส่วนที่เหลือของหน้า
ค่าเริ่มต้น: | scroll |
---|---|
รับการถ่ายทอด: | no |
Animatable: | no. Read about animatable |
เวอร์ชัน: | CSS1 |
ไวยากรณ์ javascript: | object .style.backgroundAttachment="fixed" Try it |
สนับสนุนเบราว์เซอร์
ตัวเลขในตารางระบุราว์เซอร์รุ่นแรกที่สนับสนุนอย่างเต็มที่ทรัพย์สิน
คุณสมบัติ | |||||
---|---|---|---|---|---|
background-attachment | 1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
Note: Internet Explorer 8 และรุ่นก่อนหน้านี้ไม่สนับสนุนภาพพื้นหลังในหลายองค์ประกอบหนึ่ง
CSS ไวยากรณ์
background-attachment: scroll|fixed|local|initial|inherit;
ค่าทรัพย์สิน
ความคุ้มค่า | ลักษณะ |
---|---|
scroll | เลื่อนพื้นหลังพร้อมกับองค์ประกอบ นี้จะเริ่มต้น |
fixed | พื้นหลังได้รับการแก้ไขในเรื่องเกี่ยวกับวิวพอร์ตด้วย |
local | เลื่อนพื้นหลังพร้อมกับเนื้อหาขององค์ประกอบ |
initial | การตั้งค่าคุณสมบัตินี้เป็นค่าเริ่มต้น อ่านเกี่ยวกับการเริ่มต้น |
inherit | สืบทอดคุณสมบัตินี้จากองค์ประกอบหลักของมัน อ่านเกี่ยวกับการรับมรดก |
ตัวอย่างเพิ่มเติม
ตัวอย่าง
วิธีการสร้างผลเลื่อน 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;
}
ลองตัวเอง» หน้าเว็บที่เกี่ยวข้อง
CSS Tutorial: CSS พื้นหลัง
อ้างอิง HTML DOM: คุณสมบัติ backgroundAttachment