已关闭,此问题需要details or clarity。目前不接受答复。
**想改善这个问题吗?**通过editing this post添加详细信息并澄清问题。
5天前关闭。
这篇文章是编辑并提交审查5天前.
Improve this question
我希望动画以默认浏览器设置运行。
h1 {
animation: mymove 8s ease-in-out forwards;
}
@keyframes mymove {
from {
top: 0px;
}
to {
top: 200px;
}
}
<h1>xyz</h1>
然而,它似乎只在<h1>
标签内声明时才起作用,例如:
position:relative;
或
position:absolute;
请解释一下这种设计行为
1条答案
按热度按时间wrrgggsh1#
您需要将位置定义为
relative
或absolute
以从顶部移动或偏移