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:
1 Like
Thankyou, I will try it first
overflow visible should do that
1 Like