Computer >> Máy Tính >  >> Lập trình >> Javascript

Thuộc tính nào được sử dụng trong CSS để kiểm soát việc cuộn hình ảnh trong nền?

Để đặt cuộn hình ảnh trong nền, hãy sử dụng tệp đính kèm nền tài sản.

Ví dụ

Bạn có thể thử chạy mã sau để tìm hiểu cách làm việc với background-attachment tài sản:

<!DOCTYPE html>
<html>
   <head>
      <style>
         body {
            background-image: url('/css/images/css.jpg');
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-attachment:scroll;
         }.
      </style>
   </head>
   <body>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
   </body>
</html>