На HTML странице заполняем форму - php проверяет - в случае успеха php включает класс
css-typing
Надо, чтобы после проверки выполнялся класс css на той же странице, не перезагружая её.
.css-typing,
input[type="checkbox"] {
display: none;
}
input[type="checkbox"]:checked ~ .css-typing {
color:White;
font-size: 150%;
font-weight: 600;
height:70px;
white-space: nowrap;
overflow: hidden;
-webkit-animation: type 1s steps(50, end);
animation: type 3s steps(55, end);
-o-animation: type 5s steps(50, end);
-moz-animation: type 3s steps(55, end);
-webkit-animation-delay: 5s;
animation-delay: 2s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes type
{
from {opacity:1; }
to { opacity:0.001; }
}
@-moz-keyframes type
{
from { width: 0; }
}
@-webkit-keyframes type
{
from { width: 0; }
}
if ($sendToTelegram) {
header('Location: thank-you.html');
} else {
echo "Error";
}