对 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>
广告