在 CSS margin-top 上執行動畫
為了用 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>
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP