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

Cách trì hoãn hoạt ảnh bằng CSS

Để trì hoãn hoạt ảnh, hãy sử dụng CSS animation-delay bất động sản. Bạn có thể thử chạy mã sau để trì hoãn hoạt ảnh

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>