如何设置离子含量滚动的起始y位置?

时间:2019-05-17 13:03:17

标签: angular ionic-framework scroll-position ion-content

我正在尝试将ion-content的滚动位置稍微降低一点,以在此控件的开头隐藏一些元素。

我需要一些like this

我尝试了'start-y =“ xx”'属性,但是它不起作用。

有什么建议吗?

<ion-content start-y="55">

1 个答案:

答案 0 :(得分:0)

在ionic4中,当前没有滚动开始位置的属性。但是,您可以在页面初始化时使用一种滚动方法,如下所示:

.ts

    import { Component, ViewChild } from '@angular/core';
    import {IonContent} from '@ionic/angular';
    @Component({
      selector: 'app-home',
      templateUrl: 'home.page.html',
      styleUrls: ['home.page.scss'],
    })
    export class HomePage {
         @ViewChild(IonContent) theContent: IonContent;


    ngOnInit() {this.theContent.scrollToPoint(0,150).then(()=>{}) }
    }
}

评论,如果您需要澄清