feat: style
This commit is contained in:
@@ -334,8 +334,21 @@ export class HomeComponent implements OnInit, AfterViewInit, OnDestroy {
|
|||||||
this.aboutSectionObserver = new IntersectionObserver(
|
this.aboutSectionObserver = new IntersectionObserver(
|
||||||
(entries: IntersectionObserverEntry[]): void => {
|
(entries: IntersectionObserverEntry[]): void => {
|
||||||
for (const entry of entries) {
|
for (const entry of entries) {
|
||||||
|
if (!entry.isIntersecting) {
|
||||||
this.zone.run((): void => {
|
this.zone.run((): void => {
|
||||||
this.isAboutSectionInView = entry.isIntersecting;
|
this.isAboutSectionInView = false;
|
||||||
|
});
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.zone.run((): void => {
|
||||||
|
this.isAboutSectionInView = false;
|
||||||
|
});
|
||||||
|
|
||||||
|
window.requestAnimationFrame((): void => {
|
||||||
|
this.zone.run((): void => {
|
||||||
|
this.isAboutSectionInView = true;
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user