在 CSS 的 letter-spacing 属性上执行动画
要使用 CSS 在 letter-spacing 属性上实现动画,你可以尝试运行以下代码
示例
<!DOCTYPE html> <html> <head> <style> p { letter-spacing: 3px; animation: mymove 3s infinite; } @keyframes mymove { 70% { letter-spacing: 20px; } } </style> </head> <body> <p>I am flying!</p> </body> </html>
广告