N
N
NakedSnake272021-10-01 17:24:28
C++ / C#
NakedSnake27, 2021-10-01 17:24:28

Is it possible to partially or completely animate in C# without using CSS?

There is this code that simulates the animation of the typed text

.text-typing
{
  width: 100%;
  font-size: 22px;
  white-space:nowrap;
  overflow:hidden;
  animation: type 5s steps(50, end);
}

@keyframes type{
  from { width: 0; } 
}

Is it possible to convert it to C# like JS does?
Yes, there is a Blazor.Animate library, but I need custom animations.

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question