Мне бы хотелось, чтобы заголовок имел те красные / оранжевые цвета в тексте, которые чередуются в бесконечном цикле, например, в диапазоне, в цикле, без замедления.сейчас он просто скрывает текст в цикле.
Я пытался переключиться с помощью линейного градиента, но не мог понять это. На правильном пути: http://recordit.co/HFknq7M2TB Я хочу эти цвета, но бесконечно, и нетзамедление.Просто непрерывный диапазон слева направо.
.landtitlep {
margin-bottom: 5%;
background: linear-gradient(to right, #ff6600 10%, #800000 70%, #cc0000 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 10vw;
font-family: "Poppins", sans-serif;
text-align: center;
background-clip: text;
animation-name: shimmer;
animation-duration: 7s;
animation-iteration-count: infinite;
animation: shimmer 7s infinite;
/*background-repeat: no-repeat;*/
text-align: center;
background-size: 70% 100%;
background-clip: text;
animation-name: shimmer;
animation-duration: 2s;
animation-iteration-count: infinite;
background-repeat: no-repeat;
background-position: 0 0;
background-color: linear-gradient(to right, #ff6600 10%, #800000 70%, #cc0000 100%);
}
@keyframes shimmer {
0% {
background-position: top left;
}
100% {
background-position: top right;
}
}