¿Cómo obtener las dimensiones de Viewport usando AngularJS?

En este artículo, veremos cómo obtener las dimensiones de Viewport en AngularJS.

Acercarse: 

  • El enfoque es usar la propiedad clientWidth e innerWidth. 
  • El máximo de estos valores debe ser el ancho y la altura respectivamente.

Ejemplo 1: En este ejemplo, la altura y el ancho se calculan en píxeles.

HTML

<!DOCTYPE HTML> 
<html>
  
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.min.js">
    </script>
  
    <script>
        var myApp = angular.module("app", []);
            myApp.controller("controller", function($scope) {
            $scope.height = '';
            $scope.width = '';
            $scope.getVPDimnsn = function() {    
                $scope.width = 
                    Math.max(document.documentElement.clientWidth,
                            window.innerWidth || 0)
                $scope.height = 
                    Math.max(document.documentElement.clientHeight,
                            window.innerHeight || 0)
                };
            });
    </script>
</head> 
  
<body style="text-align:center;">
    <h1 style="color:green;">  
        GeeksForGeeks  
    </h1> 
  
      
    <p>
        How to get the dimensions of the 
        Viewport in AngularJS
    </p>
  
    <div ng-app="app">  
        <div ng-controller="controller">
            <button ng-click='getVPDimnsn()' >
                Click here
            </button>
            <br><br>
            Height of viewport = {{height}}px
            <br>
            Width of viewport= {{width}}px
            <br>
        </div> 
    </div>
</body>   
    
</html>

Producción:

Ejemplo 2: En este ejemplo, la altura y el ancho se calculan en centímetros.

HTML

<!DOCTYPE HTML> 
<html>
  
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.min.js">
    </script>
  
    <script>
        var myApp = angular.module("app", []);
            myApp.controller("controller", function($scope) {
            $scope.height = '';
            $scope.width = '';
            $scope.getVPDimnsn = function() {    
                $scope.width = 
                    Math.max(document.documentElement.clientWidth,
                            window.innerWidth || 0)
                $scope.height = 
                    Math.max(document.documentElement.clientHeight,
                            window.innerHeight || 0)
                };
            });
    </script>
</head> 
  
<body style="text-align:center;">
    <h1 style="color:green;">  
        GeeksForGeeks  
    </h1> 
  
      
<p>
        How to get the dimensions of the Viewport in AngularJS
    </p>
  
    <div ng-app="app">  
        <div ng-controller="controller">
            <button ng-click='getVPDimnsn()' >
                Click here
            </button>
            <br>
            <br>
            Height of viewport = {{height * 2.54 / 96}}cm
            <br>
            Width of viewport= {{width * 2.54 / 96}}cm
            <br>
        </div> 
    </div>
</body>   
    
</html>

Producción:

Publicación traducida automáticamente

Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *