Running/Moving Text in Perspective Views

Hello Guys, I'm wondering how to create running or moving text in Perspective based on input data. And I don't have any reference to make that except using Vision.

1 Like

What do you mean by input data?

Here's something to get you started:

  • In Perspective → Styles → right-click and enable Advanced Stylesheet.
  • Paste in the following CSS:
@keyframes marquee {
 0% {
   transform: translateX(100%);
 }
 100% {
   transform: translateX(-100%);
 }
}

Apply these textStyle properties to the label:
Marquee

1 Like

Sorry, not input data but input text.

Here the detail :

Thankyou, I will try it first

I success to create running text, but how can I remove scrollable of running text?

overflow visible should do that

1 Like