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

Animate CSS rời khỏi thuộc tính

Để triển khai hoạt ảnh ở bên trái thuộc tính CSS, bạn có thể thử chạy mã sau:

Ví dụ

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            border: 2px solid black;
            width: 300px;
            height: 100px;
            position: absolute;
            left: 0;
            animation: myanim 5s infinite;
         }
         @keyframes myanim {
            30% {
               left: 200px;
            }
         }
      </style>
   </head>
   <body>
      <div>This is demo text</div>
   </body>
</html>