Because it does not work ? - Forum

Forum Navigation
You need to log in to create posts and topics.

Because it does not work ?

As per object:

CreateEmptyObject [myCSS]
SetVar [myCSS("color")] "#9ACD32"

AnimateObjectCSS "TextInput1" [myCSS] 10000 1000 "" ""

 

@giasal it seems JQuery has problems animating color or background-color properties. Use neoAnimateTo instead:

CreateEmptyObject [myCSS]
SetVar [myCSS("color")] "#9ACD32"
neoAnimateTo "TextInput1" [myCSS] 1 0 "none" "easein"

Regards.

javadrajabihakami has reacted to this post.
javadrajabihakami

Thanks for the reply.
I have two more questions to ask:
1) Because some commands are colored red
2) Where can I find complete list of CSS

Greetings.

W3 Schools is a great place to start.

https://www.w3schools.com/cssref/

1) Why some commands are colored in red

@giasal those commands are not core commands but from plugins. Whenever you use one of them an additional JavaScript file(s) could be added to the compiled project. You can even create your own VisualNEO Web plugins using JavaScript.

Where can I find complete list of CSS

There are many good tutorials and references online:

Tutorial:
https://www.w3schools.com/css/

Reference:
https://www.w3schools.com/cssref/default.asp

Regards.