this.httpService.getList().subscribe(data =>
{
this.arr = [...this.arr, ...data];
}
);.knopka {
opacity: 0;
position: fixed;
left: 10px;
transition: all 1s ease-in-out;
}if (window.pageYOffset > 20) {
btn.style.opacity = '1';
} else { btn.style.opacity = '0'; }