20

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

/** 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 元素的当前位置。

4

4 回答 4

30
<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

于 2017-03-03T10:18:52.167 回答
26

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

@ViewChild('ElementRefName') element: ElementRef;

const {x, y} = this.element.nativeElement.getBoundingClientRect();
于 2018-12-04T15:44:04.797 回答
10

在 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 }
}
于 2018-09-21T13:53:06.513 回答
0

You can use two way

// html

<div id="section" ></div>

// Step-1

@ViewChild('section', { static: false }) public section?: ElementRef;

this.section.nativeElement.scrollIntoView({ behavior: "smooth", block: "start" });

// Step-2

document.getElementById("section").scrollIntoView({ behavior: "smooth", block: "center" });
于 2021-09-23T17:43:55.543 回答