css--animation屬性

  1. animation-name: 
  2. animation-duration: 4s   //必須始終定義,否則動畫不動
  3. animation-iteration-count: infinite;    //定義動畫次數
  4. @keyframes rotate {           ////定義動畫的內容
  5.   from {
  6.     transform: rotate(0deg);
  7.   }
  8.   to {
  9.     transform: rotate(359deg);
  10.   }
  11. }
發佈了46 篇原創文章 · 獲贊 5 · 訪問量 3萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章