要使用CSS在margin-top屬性上實(shí)現(xiàn)動(dòng)畫(huà),您可以嘗試運(yùn)行以下代碼
示例
現(xiàn)場(chǎng)演示
<!DOCTYPE html> <html> <head> <style> div { background-color: orange; animation: myanim 4s infinite; color: white; } @keyframes myanim { 30% { margin-top: 30px; } } </style> </head> <body> <h2>Heading One</h2> <div> This is demo text. </div> </body> </html>
登錄后復(fù)制
以上就是在 CSS margin-top 上執(zhí)行動(dòng)畫(huà)的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!