動畫 CSS 字間距屬性
要透過 CSS 為 word-spacing 屬性實現動畫,可以嘗試執行以下程式碼 −
示例
<!DOCTYPE html> <html> <head> <style> div { border: 2px solid blue; background: orange; animation: myanim 3s infinite; } @keyframes myanim { 50% { word-spacing: 30px; } } </style> </head> <body> <h1>CSS word-spacing property</h1> <div> 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! 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! </div> </body> </html>
廣告