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

คุณสมบัติระยะขอบ CSS เคลื่อนไหว


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

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         p {
            animation: mymove 3s infinite;
            margin: 20px;
         }
         @keyframes mymove {
            70% {
               margin: 60px;
            }
         }
      </style>
   </head>
   <body>
      <p>This is demo text! This is demo text! This is demo text!
         This is demo text! This is demo text! This is demo text!
         This is demo text! This is demo text! This is demo text!
         This is demo text! This is demo text! This is demo text!
      </p>
   </body>
</html>