如何在几秒钟内淡出文本?

时间:2019-03-12 14:52:02

标签: html css fade

我的网站上有标题文本。我喜欢在几秒钟内淡入(例如3秒)  我可以为该部分更改html和CSS。但是我需要放置什么代码?

感谢帮助enter image description here

enter image description here

1 个答案:

答案 0 :(得分:-1)

这是我想出的最简单的方法

.paradise #anyone{
  animation: fadein 3s;
}

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
 }
<html>
<body>
<h2 class=“paradise” id=“anyone”>
Paradise anyone?
</h2>
</body>
</html>