clearKeyframes
[ Funktion ]
public clearKeyframes(): this;
Löscht alle Keyframes dieser Animation.
Parameter
Name | Typ | Beschreibung |
---|---|---|
- | - | - |
Rückgabewert
Typ | Beschreibung |
---|---|
Diese Methode gibt ihr Elternobjekt zurück, um eine Aneinanderkettung von Methodenaufrufen zu ermöglichen. |
Beispiel – JavaScript
var animation = new TcHmi.Animation('ViewDesktopBeckhoffLogo', '');
animation.addKeyframe('top', '20px', 0);
animation.clearKeyframes();
var keyframes = animation.keyframes(); // empty array
Verfügbar ab Version 1.8 |