Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

ดำเนินการแอนิเมชั่นบนคุณสมบัติขอบด้านขวาของ CSS


ในการใช้งานแอนิเมชั่นบนคุณสมบัติ Margin-right ด้วย CSS คุณสามารถลองเรียกใช้โค้ดต่อไปนี้

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            background-color: blue;
            animation: myanim 4s infinite;
            color: white;
         }
         @keyframes myanim {
            30% {
               margin-right: 30px;
            }
         }
      </style>
   </head>
   <body>
      <h2>Heading One</h2>
      <div>
         This is demo text.
      </div>
   </body>
</html>