我在ion5中创建了一个图像zoomIn/ZoomOut
,因此出现了上述错误。
下面是我的脚本:
- 超文本标记语言**
<img #zoomedImage [src]="media.image" />
- 技术支助**
@ViewChild('zoomedImage', { static: false }) zoomedImage: IonContent;
zoom = 1;
zoomIn() {
this.zoom += 0.1;
this.zoomedImage.nativeElement.style.transform = `scale(${this.zoom})`;
}
zoomOut() {
if (this.zoom > 1) {
this.zoom -= 0.1;
this.zoomedImage.nativeElement.style.transform = `scale(${this.zoom})`;
}
}
1条答案
按热度按时间cuxqih211#
因为您在viewChild中使用了错误的类型。请用途: