Answers for "get screen size from window"

1

get the size of the screen javascript

window.screen.height;
window.screen.width;
Posted by: Guest on March-18-2020
0

Get width of screen

public innerWidth: any;
ngOnInit() {
    this.innerWidth = window.innerWidth;
}
Posted by: Guest on July-01-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language