如何在 ionic2 中滚动添加类



我想在滚动时在我的 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)
    })
  }
}

相关内容

  • 没有找到相关文章

最新更新