Aurelia - Animazioni

In questo capitolo imparerai come usare le animazioni CSS nel framework Aurelia.

Passaggio 1: visualizzazione

La nostra vista avrà un elemento che sarà animato e un pulsante per attivare il animateElement() funzione.

app.html

<template>
   <div class = "myElement"></div>
   <button click.delegate = "animateElement()">ANIMATE</button>
</template>

Passaggio 2 - Visualizza modello

All'interno del nostro file JavaScript, importeremo CssAnimatorplug-in e iniettarlo come dipendenza. IlanimateElementla funzione chiamerà l'animatore per avviare l'animazione. L'animazione verrà creata nel passaggio successivo.

import {CssAnimator} from 'aurelia-animator-css';
import {inject} from 'aurelia-framework';

@inject(CssAnimator, Element)
export class App {
   constructor(animator, element) {
      this.animator = animator;
      this.element = element;
   }

   animateElement() {
      var myElement = this.element.querySelector('.myElement');
      this.animator.animate(myElement, 'myAnimation');
   }
}

Passaggio 3: stile

Scriveremo CSS all'interno styles/styles.css file. .myAnimation-add è il punto di partenza di un'animazione while .myAnimation-remove viene chiamato quando l'animazione è completa.

styles.css

.myElement {
   width:100px;
   height: 100px;
   border:1px solid blue;
}

.myAnimation-add {
   -webkit-animation: changeBack 3s;
   animation: changeBack 3s;
}

.myAnimation-remove {
   -webkit-animation: fadeIn 3s;
   animation: fadeIn 3s;
}

@-webkit-keyframes changeBack {
   0% { background-color: #e6efff; }
   25% { background-color: #4d91ff; }
   50% { background-color: #0058e6; }
   75% { background-color: #003180; }
   100% { background-color: #000a1a; }
}

@keyframes changeBack {
   0% { background-color: #000a1a; }
   25% { background-color: #003180; }
   50% { background-color: #0058e6; }
   75% { background-color: #4d91ff; }
   100% { background-color: #e6efff; }
}

Una volta che il file ANIMATEsi fa clic sul pulsante, il colore di sfondo cambierà da azzurro ad una tonalità scura. Quando questa animazione è completa dopo tre secondi, l'elemento svanirà al suo stato iniziale.