state
[ Funktion ]
public state(): TcHmi.Animation.Status;
Gibt den aktuellen Status der Animation zurück.
Parameter
Name | Typ | Beschreibung |
---|---|---|
- | - | - |
Rückgabewert
Typ | Beschreibung |
---|---|
Der aktuelle Status der Animation. |
Beispiel – JavaScript
var animation = new TcHmi.Animation('ViewDesktopBeckhoffLogo', '');
var state1 = animation.state(); // TcHmi.Animation.Status.CONFIGURE
animation.addKeyframe('top', '20px', 0).addKeyframe('top', '50px', 1);
animation.run();
var state2 = animation.state(); // TcHmi.Animation.Status.INITIALIZED
Verfügbar ab Version 1.8 |