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

คุณสมบัติ CSS ใดที่ใช้ในการเรียกใช้แอนิเมชั่นใน Alternate Cycles


ใช้ ทิศทางภาพเคลื่อนไหว คุณสมบัติเพื่อเรียกใช้แอนิเมชั่นในทิศทางอื่น คุณสมบัตินี้ใช้กับ ภาพเคลื่อนไหวสำรอง เพื่อให้บรรลุสิ่งนี้

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 200px;
            background-color: yellow;
            animation-name: myanim;
            animation-duration: 2s;
            animation-direction: alternate;
            animation-iteration-count: 3;
         }
         @keyframes myanim {
            from {
               background-color: green;
            }
            to {
               background-color: blue;
            }
         }
      </style>
   </head>
   <body>
      <div></div>
   </body>
</html>