0
誰でもng-bootstrapタブにフェーディング効果を追加するのを助けることができます。 https://ng-bootstrap.github.io/#/components/tabsangular2 ng-bootstrapタブにフェード効果を追加
誰でもng-bootstrapタブにフェーディング効果を追加するのを助けることができます。 https://ng-bootstrap.github.io/#/components/tabsangular2 ng-bootstrapタブにフェード効果を追加
あなたはこのようなことを求めていますか? :
@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
ありがとう、それは働いた –
こんにちは、あなたが効果をフェージングを取得するために、これまで試みているものを明記してください。そして、あなたがどのような効果と方法が必要なのかを示すコードをいくつか入れてください。あなたはフェードインフェードアウト効果を持つブートストラップタブを試しましたか? –