nativescript
Implementando animaciones en nativos
Buscar..
Animación de fondo de StackLayout
Color de fondo animado de stacklayout al tocar el botón
pages / main.component.ts
import {Component, ElementRef, ViewChild} from "@angular/core";
import {Color} from "color";
import {View} from "ui/core/view";
@Component({
selector: "main",
template: `
<StackLayout #el>
<Button text="Apply Changes" (tap)="changeBgColor()"></Button>
</StackLayout>
`,
styleUrls: ["pages/main/main-common.css"],
})
export class MainComponent {
@ViewChild("el") el: ElementRef;
changeBgColor() {
let el = <View>this.el.nativeElement;
el.animate({
backgroundColor: new Color("#222"),
duration: 300
});
}
}
páginas / main-common.css
StackLayout{
background-color: #333;
}
Uso de la función de temporización de animación y propiedades de animación.
pages / main.component.ts
import {Component, ElementRef, ViewChild} from "@angular/core";
import {View} from "ui/core/view";
import {AnimationCurve} from "ui/enums";
@Component({
selector: "main",
template: `
<StackLayout>
<Image #img src="~/assets/images/user-shape.png"></Image>
<Button text="Apply Changes" (tap)="animateImage()"></Button>
</StackLayout>
`,
styleUrls: ["pages/main/main-common.css"],
})
export class MainComponent {
@ViewChild("img") img: ElementRef;
animateImage() {
let img = <View>this.img.nativeElement;
img.animate({
translate: { x: 0, y: 120 },
duration: 2000,
curve: AnimationCurve.easeIn
});
}
}
#snippet para otras propiedades de animación
También puede escribir su propia función de temporización utilizando cubicBezier.
- Uso de cubicBezier
img.animate({
translate: { x: 0, y: 120 },
duration: 2000,
curve: AnimationCurve.cubicBezier(0.1, 0.2, 0.1, 1)
});
- Propiedades de animación
Opacidad
img.animate({
opacity: 0,
duration: 2000
});
Traducir
img.animate({
translate: { x: 120, y: 0},
duration: 2000
});
Escala
img.animate({
scale: { x: 1.5, y: 1.5},
duration: 2000
});
Girar
img.animate({
rotate: 270,
duration: 2000
});
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow