Computer >> Máy Tính >  >> Lập trình >> CSS

Đặt số lần Hoạt ảnh sẽ chạy với CSS


Sử dụng animation-iteration-count để đặt số lần hoạt ảnh sẽ chạy với CSS.

Ví dụ sau đặt số lượng hoạt ảnh thành 2:

Ví dụ

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

   <body>
      <div> </div>
   </body>
</html>