CSS 淡出并保持

CSS fade-out and stay so

是否有 CSS 唯一的方法来淡出下面的文本,并在动画完成后保持隐藏?它当前淡出,然后再次出现。我已经尝试添加 display: none(以及 height: 0px,这不是我真正想要的),但问题仍然存在 - 它会在动画完成后重新出现。

很高兴使用一些 JavaScript 来做到这一点(有一个堆栈溢出的答案解释了如何监听动画事件的结束),但是纯粹的 CSS 是首选。

.fade-out {
  animation: fadeOut ease 5s;
  -webkit-animation: fadeOut ease 5s;
  -moz-animation: fadeOut ease 5s;
  -o-animation: fadeOut ease 5s;
  -ms-animation: fadeOut ease 5s;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-ms-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
<h1 class="fade-out">hello</h1>

为此目的使用 animation-fill-mode: forwards;

.fade-out {
  animation: fadeOut ease 5s;
  animation-fill-mode: forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
<h1 class="fade-out">hello</h1>