要使用CSS 在height 屬性上實作動畫,您可以嘗試執行下列程式碼
現場演示
<!DOCTYPE html> <html> <head> <style> div { border: 2px solid black; width: 300px; height: 100px; animation: myanim 5s infinite; } @keyframes myanim { 30% { height: 400px; } } </style> </head> <body> <div>This is demo text</div> </body> </html>
以上是動畫 CSS 高度屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!