我希望我的背景图像与用户的桌面屏幕始终处于同一高度。这可能吗?
答案 0 :(得分:0)
这应该可以通过将图像的高度设置为100vh的高度来实现,但IE8或更低版本不支持此功能。
答案 1 :(得分:0)
在主体(或具有背景图像的容器)上尝试此操作:
import { Component,EventEmitter, Output, OnInit, OnDestroy } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router';
// importing DataService ';
@Component({
selector: 'o-result',
templateUrl: './o-result.component.html',
})
export class AComp implements OnInit {
constructor(
private dataService: DataService
){
}
ngOnInit() {
this.dataService.getResult(<url>, <params>)
.subscribe(
response => {
// doing logic with responce
}
,
error => {
this.showErrorPage();
}
)
}
showErrorPage(): void {
// displaying error in popup
}
}