1. 程式人生 > 其它 >關鍵幀動畫

關鍵幀動畫

技術標籤:前端css

關鍵幀動畫

  • 相當於多個補間動畫
  • 與元素狀態的變化無關
  • 定義更加靈活
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>keyframe關鍵幀動畫</title>
<style> .container{ width: 100px; height: 100px; background: red; animation: run 1s; animation-direction: reverse; animation-iteration-count: infinite; /*animation-fill-mode: forwards;*/ /*animation-play-state: paused;*/
} @keyframes run { 0%{ width: 100px; } 100%{ width: 800px; } } </style> </head> <body> <div class="container"></div> </body> </html>

展示效果: