Angular 2:获取HTML元素的位置

时间:2017-03-03 10:09:09

标签: html5 angular angular2-hostbinding

我试图在Angular 2中实现一个自定义指令,用于移动任意HTML元素。到目前为止一切正常,但我现在不知道如何在点击它并想要开始移动时获取HTML元素的初始位置。我使用这两个主机绑定绑定到我的HTML元素的topleft样式:

/** current Y position of the native element. */
@HostBinding('style.top.px') public positionTop: number;

/** current X position of the native element. */
@HostBinding('style.left.px') protected positionLeft: number;

问题在于它们两个都在undefined开头。我只能更新也会更新HTML元素的值,但我无法读取它?那是假设那样吗?如果是,我还有什么办法可以检索HTML元素的当前位置。

3 个答案:

答案 0 :(得分:18)

<div (click)="move()">xxx</div>
// get the host element
constructor(elRef:ElementRef) {}

move(ref: ElementRef) {
  console.log(this.elRef.nativeElement.offsetLeft);
}

另见https://stackoverflow.com/a/39149560/217408

答案 1 :(得分:3)

在typeScript中,您可以获得以下位置:

@ViewChild('ElementRefName') element: ElementRef;

const {x, y} = this.element.nativeElement.getBoundingClientRect();

答案 2 :(得分:2)

在html中:

<div (click)="getPosition($event)">xxx</div>

在打字稿中:

getPosition(event){
    let offsetLeft = 0;
    let offsetTop = 0;

    let el = event.srcElement;

    while(el){
        offsetLeft += el.offsetLeft;
        offsetTop += el.offsetTop;
        el = el.parentElement;
    }
    return { offsetTop:offsetTop , offsetLeft:offsetLeft }
}