cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X

CSS3 animation in the thingworx studio

yyizhou
1-Newbie

CSS3 animation in the thingworx studio

Hi all

How to use the animation of CSS3 in the thingworx studio, I tried to write some css codes like the following:

apply it to a textarea widght and wish to achieve the function like:

Video Link : 2175


but in fact,it's invalid.Only the color of background had changed and the position did not change.

So who can tell me what should I do if I want to change the position of textarea widght?

1 REPLY 1
ytella
17-Peridot
(To:yyizhou)

Hi @yyizhou,

The video link that you have provided is broken. Could you please provide more details on this scenario? One way to change the position of the textarea widget is as follows:

  • Click on STYLES -> Application and paste the below code:
    .twxTextArea textarea {
    position: fixed;
    left: 0;
    top: 50%;
    }

This will make the textarea widget appear in the center. Please modify the property values as required.

Top Tags