У меня проблема с моим кодом. Поток в порядке, но я хочу, чтобы тег с 3 по 5 p
начинал писать справа налево, и все, что я могу сделать, это слева направо.
p {
font-weight: bold;
white-space: nowrap;
overflow: hidden;
width: 30em;
}
p:nth-child(1) {
animation: type 3s steps(200, end);
}
p:nth-child(2) {
font-weight: normal;
animation: type2 3s steps(300, end);
}
p:nth-child(3) {
animation: type3 5s steps(400, end);
}
p:nth-child(4) {
animation: type4 4s steps(400, end);
}
p:nth-child(5) {
animation: type5 4.5s steps(600, end);
}
@keyframes type {
0% {
width: 0;
}
}
@keyframes type2 {
0% {
width: 0;
}
25% {
width: 0;
}
50% {
width: 100;
}
75% {
width: 100;
}
100% {
width: 100;
}
}
@keyframes type3 {
0% {
width: 0;
}
25% {
width: 0;
}
50% {
width: 0;
}
75% {
width: 100;
}
100% {
width: 100;
}
}
@keyframes type4 {
0% {
width: 0;
}
25% {
width: 0;
}
50% {
width: 0;
}
75% {
width: 0;
}
100% {
width: 100;
}
}
@keyframes type5 {
0% {
width: 0;
}
25% {
width: 0;
}
50% {
width: 0;
}
75% {
width: 0;
}
100% {
width: 100;
}
}
<p>Opinion</p>
<p>Break</p>
<p>Thought</p>
<p>and</p>
<p>Peace</p>