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

ทำแอนิเมชั่นบนคุณสมบัติสีพื้นหลังด้วย CSS


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

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 400px;
            height: 300px;
            background: yellow;
            animation: myanim 3s infinite;
         }
         @keyframes myanim {
            20% {
               background-color: maroon;
            }
         }
      </style>
   </head>
   <body>
      <div></div>
   </body>
</html>