要使用CSS在margin-top屬性上實現動畫,您可以嘗試運行以下代碼
示例
現場演示
<!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>
登錄后復制
以上就是在 CSS margin-top 上執行動畫的詳細內容,更多請關注www.92cms.cn其它相關文章!






