我想在滚动时在我的Ionic2应用程序中添加动画,但是我无法在滚动时添加类,因此动画在滚动时不会发生,所有动画都会一次性触发。 请帮我解决这个问题。
答案 0 :(得分:0)
基本上ionScroll
上有一个ion-content
事件发射器,因此您可以订阅它并执行您需要的任何操作。您可以在docs找到更多信息。
以下是一个例子:
template.html
<ion-content #content></ion-content>
component.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)
})
}
}