keyframes
[ Funktion ]
public keyframes(): TcHmi.Animation.Keyframe[];
Gibt die Keyframes dieser Animation zurück.
Parameter
Name | Typ | Beschreibung |
---|---|---|
- | - | - |
Rückgabewert
Typ | Beschreibung |
---|---|
Die Keyframes dieser Animation. |
Beispiel – JavaScript
var animation = new TcHmi.Animation('ViewDesktopBeckhoffLogo', '');
animation.addKeyframe('top', '20px', 0)
.addKeyframe('top', '50px', 1);
var keyframes = animation.keyframes();
// [{ styles: { top: ["20px"] }, progressPoint: 0 }, { styles: { top: ["50px"] }, progressPoint: 1 }]
Verfügbar ab Version 1.8 |