繁体   English   中英

设置水平滚动位置-Ionic 3

[英]Set horizontal scroll position - Ionic 3

我正在尝试更改ion-scroll元素的滚动位置,但没有得到..这就是我尝试过的方法:

TS

import { Component, ViewChild, ElementRef } from "@angular/core";

 @ViewChild("scroller", { read: ElementRef })
  private scroller: ElementRef;

HTML

 <ion-scroll #scroller scrollX="true" style="height: 21px; white-space: nowrap">
  <div>... </div>
 </ion-scroll>

这有效

  this.scroller.nativeElement.style.background = "blue";

这不行

  this.scroller.nativeElement.scrollLeft = this.scroller.nativeElement.scrollWidth;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM