gpt4 book ai didi

javascript - 如何在 Angular 8+ 中使用 Panzoom javascript?

转载 作者:行者123 更新时间:2023-12-05 00:39:31 29 4
gpt4 key购买 nike

我无法使用 Panzoom Javascript library在 Angular 。我明白了

ERROR
Error: panzoom is not defined

这里是 stackblitz到目前为止我所做的。这里是 working demo它应该如何工作

谁能帮我解决问题?谢谢

我已按照 post 中提到的所有步骤进行操作

最佳答案

看来 Panzoom 确实有 typescript 定义 Github Issue

这是一个有效的 stackblitz

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

@Component({
selector: 'hello',
template: `<img id="scene" #scene src="https://www.probytes.net/wp-content/uploads/2018/01/5-1.png">`,
styles: []
})
export class HelloComponent implements AfterViewInit {
@ViewChild('scene', { static: false }) scene: ElementRef;

ngAfterViewInit() {
// panzoom(document.querySelector('#scene'));
panzoom(this.scene.nativeElement);
}
}

关于javascript - 如何在 Angular 8+ 中使用 Panzoom javascript?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56498067/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com