2017-02-21 36 views
6

我已經看到許多動畫教程的進入或離開元素(下圖中的「新元素」),但其餘元素(元素1和2)除了通常只是傳送到他們的新位置。Angular2 * ng對於推開元素的動畫

enter image description here

有沒有一種方法,以動畫等元素很好地搬開,如附加圖像中所描繪?

回答

11

您可以使用angular2 animation API來實現它。

Plunker Example

enter image description here

@Component({ 
    selector: 'my-app', 
    template: ` 
    <div class="container"> 
     <div *ngFor="let item of items; let i = index" class="item" (click)="remove(i)" 
     [@anim]="item.state"> 
     {{ item.name }} 
     </div> 
    </div> 
    <div class="aside"> 
     <button (click)="push()">Push</button> 
    </div> 
    `, 
    animations: [ 
    trigger('anim', [ 
     transition('* => void', [ 
      style({ height: '*', opacity: '1', transform: 'translateX(0)', 'box-shadow': '0 1px 4px 0 rgba(0, 0, 0, 0.3)'}), 
      sequence([ 
      animate(".25s ease", style({ height: '*', opacity: '.2', transform: 'translateX(20px)', 'box-shadow': 'none' })), 
      animate(".1s ease", style({ height: '0', opacity: 0, transform: 'translateX(20px)', 'box-shadow': 'none' })) 
      ]) 
     ]), 
     transition('void => active', [ 
      style({ height: '0', opacity: '0', transform: 'translateX(20px)', 'box-shadow': 'none' }), 
      sequence([ 
      animate(".1s ease", style({ height: '*', opacity: '.2', transform: 'translateX(20px)', 'box-shadow': 'none' })), 
      animate(".35s ease", style({ height: '*', opacity: 1, transform: 'translateX(0)', 'box-shadow': '0 1px 4px 0 rgba(0, 0, 0, 0.3)' })) 
      ]) 
     ]) 
    ]) 
    ] 
}) 
export class AppComponent { 
    items: any[] = [ 
    { name: 'Element 1' }, 
    { name: 'Element 2' } 
    ]; 

    push() { 
    this.items.splice(1, 0, { name: 'New element', state: 'active' }); 
    } 

    remove(index) { 
    this.items.splice(index, 1); 
    } 
} 

不要忘了導入BrowserAnimationsModule

+1

我需要你的答案几乎是什麼,它肯定幫助我找到一個解決方案,我認爲完美的。他們失蹤的關鍵是,我不知道**高度:'*'**是一件事情。我添加了margin-bottom轉換以消除跳動動畫,當刪除元素並將序列更改爲group(可能它似乎在gif上排序,我預計動畫是平行的,但具有不同的持續時間)。 感謝了很多,這是我的[Plunker(https://plnkr.co/edit/cjCXnuOCrNH9b2I7XnLD?p=preview) – abfarid

+1

這裏是關於'高度文件:「*」'https://angular.io/docs/ts /latest/guide/animations.html#!#automatic-property-calculation – yurzui