import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-image-label', templateUrl: './image-label.component.html', styleUrls: ['./image-label.component.scss'] }) export class ImageLabelComponent implements OnInit { constructor() { } imgItem: any ngOnInit(): void { } heightCount() { let style: any = {} let height = document.documentElement.clientHeight style.height = (height - 180) + 'px'; return style } }