首頁  >  文章  >  web前端  >  設定動畫是向前播放還是使用 CSS

設定動畫是向前播放還是使用 CSS

WBOY
WBOY轉載
2023-09-20 18:53:02641瀏覽

设置动画是向前播放还是使用 CSS

使用animation-direction屬性來設定動畫是向前播放、向後播放還是交替循環播放:

範例

即時示範

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

以上是設定動畫是向前播放還是使用 CSS的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除