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

เรียกใช้แอนิเมชั่นย้อนกลับก่อนแล้วจึงส่งต่อด้วย CSS


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

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 200px;
            position: relative;
            background-color: yellow;
            animation-name: myanim;
            animation-duration: 2s;
            animation-direction: alternate-reverse;
            animation-iteration-count: 3;
         }
         @keyframes myanim {
            0% {background-color:green; left:0px; top:0px;}
            50% {background-color:maroon; left:100px; top:100px;}
            100% {background-color:gray; left:0px; top:0px;}
         }
      </style>
   </head>
   <body>
      <div></div>
   </body>
</html>