jQueryのelement.offset()。topでは、ドキュメントの上端から固定要素の現在位置を取得します。私がスクロールダウンしているときに、オフセットトップ値をスクロールアップすると、スクロールアップします。角4スクロール要素のオフセットトップ値
今、私は角度4で同じ動作が必要ですが、私は何かが足りなくて、オフセットトップ値は同じです。
添付Plunkerを参照してください:https://embed.plnkr.co/3sDzpRcJMEN6lndw4MUB
@Component({
selector: '[my-app]',
template: `
<div>
<h2>There is document top</h2>
<div class="fixed-box" #fixedBox>
<p>I'm fixed box</p>
<p>I wanna know my offset from the document top (not viewport) in every scroll step</p>
<p>My current position from the document top is: {{ fixedBoxOffsetTop }}px</p>
<p>My current position from the document top is: {{ fixedBoxOffsetTopOtherMethod }}px</p>
</div>
</div>
`,
})
export class App implements OnInit {
fixedBoxOffsetTop: number = 0;
fixedBoxOffsetTopOtherMethod: number = 0;
@ViewChild('fixedBox') fixedBox: ElementRef;
constructor() {}
ngOnInit() {}
@HostListener("window:scroll", [])
onWindowScroll() {
this.fixedBoxOffsetTop = this.fixedBox.nativeElement.offsetTop; // This value looks like init value and doesn't change during scroll
this.fixedBoxOffsetTopOtherMethod = this.fixedBox.nativeElement.getBoundingClientRect().top; // The same result as offsetTop
}
}
誰も助けることができますか?
あなたはおそらく、あなたの体にコードを含めます質問。そのリンクは確かに1日失効し、この疑問は意味を失うことになります。 – jdv