私はイオンの枠組みを知りませんが、ここでは、プレーンAngular2でどのように動作するかのデモ(plunker)があります:http://plnkr.co/edit/yJHjL5ap9l4MwOimCyyY?p=preview
コンポーネントデコレータのanimations
機能の使用:
成分A
を
@Component({
selector: 'home',
directives: [ROUTER_DIRECTIVES],
template: `
<div class="radibre">
Home page
</div>
`,
styles: ['.radibre { width: 200px; height: 100px; background: red; color: white; }'],
host: {
'[@routeAnimation]': 'true',
'[style.display]': "'block'",
'[style.position]': "'absolute'"
},
animations: [
trigger('routeAnimation', [
state('*', style({transform: 'translateX(0)', opacity: 1})),
transition('void => *', [
style({transform: 'translateX(-100%)', opacity: 0}),
animate(1000)
]),
transition('* => void', animate(1000, style({transform: 'translateX(100%)', opacity: 0})))
])
]
})
export class Home {
constructor() { }
}
成分B
@Component({
selector: 'page',
template: `
<div class="page">Another page</div>`,
styles: ['.page { width: 200px; height: 100px; background: green; color: white; }'],
host: {
'[@routeAnimation]': 'true',
'[style.display]': "'block'",
'[style.position]': "'absolute'"
},
animations: [
trigger('routeAnimation', [
state('*', style({transform: 'translateX(0)', opacity: 1})),
transition('void => *', [
style({transform: 'translateX(-100%)', opacity: 0}),
animate(1000)
]),
transition('* => void', animate(1000, style({transform: 'translateX(100%)', opacity: 0})))
])
]
})
export class Page {
constructor() { }
}
へようこそ スタックオーバーフロー!問題を解決するための努力をして、内容の中でより良いタイトルと詳細な情報をお持ちいただけますか? – manetsus