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

Đặt thời gian trễ để bắt đầu hoạt ảnh bằng CSS

Sử dụng animation-delay thuộc tính để đặt độ trễ khi bắt đầu hoạt ảnh bằng CSS:

Ví dụ

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