要使用CSS 在padding-top 屬性上實作動畫,您可以嘗試執行以下程式碼-
#現場示範
<!DOCTYPE html> <html> <head> <style> div { width: 350px; height: 150px; outline: 3px solid maroon; animation: myanim 3s infinite; } @keyframes myanim { 30% { padding-top: 60px; } } </style> </head> <body> <h1>CSS padding-top property</h1> <div> </div> </body> </html>
以上是對 CSS padding-top 屬性執行動畫的詳細內容。更多資訊請關注PHP中文網其他相關文章!