我想在滚动时在我的 Ionic2 应用程序中添加动画,但我无法在滚动时添加类,因此动画不会在滚动时发生,所有动画一次触发。请帮我解决这个问题。
基本上,
ion-content
上有一个ionScroll
事件发射器,因此您可以订阅它并执行任何需要的操作。您可以在文档中找到更多信息。
下面是一个示例:
模板.html
<ion-content #content></ion-content>
组件.js
import { Component, ViewChild } from '@angular/core'
@Component({...})
export class Component {
@ViewChild('content') content = null
ngAfterViewInit() {
this.content.ionScroll.subscribe(event => {
// do what you need here
console.log(event)
})
}
}