要使用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>