📅  最后修改于: 2022-03-11 14:48:34.235000             🧑  作者: Mango
@ViewChild(IonContent) content: IonContent;
ScrollToBottom(){
this.content.scrollToBottom(1500);
}
ScrollToTop(){
this.content.scrollToTop(1500);
}
ScrollToPoint(X,Y){
this.content.scrollToPoint(X,Y,1500);
}