在 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