我正在尝试将ion-content
的滚动位置稍微降低一点,以在此控件的开头隐藏一些元素。
我需要一些like this
我尝试了'start-y =“ xx”'属性,但是它不起作用。
有什么建议吗?
<ion-content start-y="55">
答案 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(()=>{}) }
}
}
评论,如果您需要澄清