首頁 >web前端 >css教學 >設定動畫未播放時元素的 CSS 樣式

設定動畫未播放時元素的 CSS 樣式

王林
王林轉載
2023-09-08 19:13:02987瀏覽

设置动画未播放时元素的 CSS 样式

使用animation-fill-mode屬性設定動畫未播放時元素的樣式

範例

現場示範

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 200px;
            position: relative;
            background: red;
            animation-name: myanim;
            animation-duration: 2s;
            animation-fill-mode: backwards;
         }
         @keyframes myanim {
            from {left: 0px; background-color: green;}
            to {left: 200px; background-color: blue;}
         }
      </style>
   </head>
   <body>
      <div></div>
   </body>
</html>

以上是設定動畫未播放時元素的 CSS 樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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