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