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

Thực hiện Hoạt ảnh trên thuộc tính vị trí nền bằng CSS

Sử dụng @keyframes để tạo hiệu ứng cho vị trí nền. Để triển khai hoạt ảnh trên thuộc tính background-position với CSS, bạn có thể thử chạy đoạn mã sau

Ví dụ

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 500px;
            height: 400px;
            background: yellow;
            background-image: url('https://www.tutorialspoint.com/latest/microservice_architecture.png');
            animation: myanim 3s infinite;
            background-position: bottom left;
         }
         @keyframes myanim {
            20% {
               background-color: maroon;
               background-position: bottom right;
            }
         }
      </style>
   </head>
   <body>
      <div></div>
   </body>
</html>