2017-05-01 6 views
0

誰でもng-bootstrapタブにフェーディング効果を追加するのを助けることができます。 https://ng-bootstrap.github.io/#/components/tabsangular2 ng-bootstrapタブにフェード効果を追加

+0

こんにちは、あなたが効果をフェージングを取得するために、これまで試みているものを明記してください。そして、あなたがどのような効果と方法が必要なのかを示すコードをいくつか入れてください。あなたはフェードインフェードアウト効果を持つブートストラップタブを試しましたか? –

答えて

1

あなたはこのようなことを求めていますか? :

@Component({ 
    selector: 'your_component', 
    animations: [ 
    trigger('fadeInOutTranslate', [ 
     transition(':enter', [ 
     style({opacity:0}), 
     animate(300, style({opacity:1})) 
     ]), 
     transition(':leave', [ 
     style({transform: 'translate(0)'}), 
     animate(300, style({opacity:0})) 
     ]) 
    ]) 
    ], 
    template: '<div [@fadeInOutTranslate] class="container"></div>', 
}) 

は場合にimport { transition, animate } from '@angular/core';

を追加することを忘れないでください:https://angular.io/docs/ts/latest/guide/animations.html

+0

ありがとう、それは働いた –

関連する問題