CSS3動畫測試
/*以下代碼均放在style標簽內*/ /*設置動畫效果*/ @keyframes testAnimation { from { background-color: red; } to { background-color: blue; } } /*應用動畫效果*/ .test { animation: testAnimation 2s infinite; }
測試效果
這是一個測試
測試通過
CSS3動畫測試
/*以下代碼均放在style標簽內*/ /*設置動畫效果*/ @keyframes testAnimation { from { background-color: red; } to { background-color: blue; } } /*應用動畫效果*/ .test { animation: testAnimation 2s infinite; }
測試效果
這是一個測試
測試通過