Сценарий:
У меня есть анимация, где мой текст будет go черным, когда мое фоновое видео будет go очень ярким.
Проблема:
после фоновое видео переключается обратно на начало текста остается черным. Как я могу сбросить его снова?
Цель:
Я хочу, чтобы моя анимация keyframe
возобновилась через несколько секунд.
Вопрос:
решение для этого?
Мой код: HTML:
<div class="header-text">
<h1 class="head-text">Rico Dijkstra</h1>
<h2 class="head-desc">Front-end</h2>
</div>
CSS:
.header-text {
display: flex;
flex-direction: column;
float: right;
text-align: right;
align-content: center;
justify-content: center;
}
.head-text {
font-family: 'Lato', ;
color: white;
float: right;
font-size: 4rem;
animation-name: color-swap;
animation-duration: 3s;
animation-delay: 4.5s;
animation-fill-mode: forwards;
}
.head-desc {
font-family: 'Lato', ;
color: white;
float: right;
font-size: 3rem;
animation-name: color-swap;
animation-duration: 3s;
animation-delay: 4.5s;
animation-fill-mode: forwards;
margin-top: 0;
}
@keyframes color-swap {
from {color: white;}
to {color: black}
}