如何在几秒内淡出文本?

问题描述 投票:-4回答:1

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

感谢helpenter image description here

enter image description here

html css fade
1个回答
-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>
© www.soinside.com 2019 - 2024. All rights reserved.