CSS top 屬性及其動畫用法
若要使用 CSS 在top屬性上實現動畫效果,你可以嘗試執行以下程式碼 −
示例
<!DOCTYPE html>
<html>
<head>
<style>
div {
position: absolute;
width: 300px;
height: 200px;
background-color: orange;
color: white;
top: 0;
animation: myanim 3s infinite;
}
@keyframes myanim {
30% {
top: 300px;
}
}
</style>
</head>
<body>
<h1>CSS top property</h1>
<div>
<h1>This is demo text!</h1>
</div>
</body>
</html>
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP