對 CSS font-size 屬性執行動畫
若要使用 CSS 對 font-size 屬性實現動畫,您可以嘗試執行以下程式碼
示例
<!DOCTYPE html> <html> <head> <style> p { border: 2px solid black; width: 400px; height: 100px; animation: myanim 5s infinite; } @keyframes myanim { 70% { font-size: 30px; } } </style> </head> <body> <p>This is demo text</p> </body> </html>
廣告