Property "angle" rotate en Ignition Perspective

A ver, he estado estas ultimas 4 horas tratando de busar una manera rápida y practica para hacer que la propiedad de angle de una imagen cambie automaticamente y gire alrededor de su eje como si fuese una rueda. Estoy creando un proyecto para aprender y practicar dónde tiene varias imagenes que necesitan animación de rotación.

Pienso que se podria colocar algún tag o expresión en la propiedad "angle" de la imagen para que automaticamente cambie el angulo y se vea la animación de rotación pero la verdad no se mucho de programación. ¿ Cómo seria la manera mas fácil y práctica para hacer esa animación de imagen como si estuviese girando una rueda estatica?

There are many ways to accomplish this.

Here is one such example.

1 Like

Thanks, I just implemented it in my view and it looked amazing! <3

There are some caveats with using the angle property. @lrose steered you in a great direction because her example is using styles.

If you use the angle property to rotate objects it can interfere with other transforms. That's fine as long as you're only rotating but if you want to rotate AND flip you need to use a transform (CSS). Or at least this was true fairly recently.

If you use expressions it will be doing processing on the gateway and will not scale as well.

Generally speaking do animations with CSS when possible.