對 CSS 行高屬性執行動畫
要透過 CSS 對line-height屬性實現動畫,你可以嘗試執行以下程式碼: -
示例
<!DOCTYPE html> <html> <head> <style> p { animation: mymove 3s infinite; line-height: 20px; } @keyframes mymove { 70% { line-height: 50px; } } </style> </head> <body> <p>This is demo text! This is demo text! This is demo text! This is demo text! This is demo text! This is demo text! This is demo text! This is demo text! This is demo text! This is demo text! This is demo text! This is demo text! </p> </body> </html>
廣告