为什么CSS动画不能在默认浏览器设置下运行?[关闭]

hs1rzwqc  于 2023-06-07  发布在  其他
关注(0)|答案(1)|浏览(129)

已关闭,此问题需要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;

请解释一下这种设计行为

wrrgggsh

wrrgggsh1#

您需要将位置定义为relativeabsolute以从顶部移动或偏移

相关问题