p5.js | altura de la ventana

windowHeight en p5.js es una variable del sistema que se utiliza para almacenar la altura de la ventana interior y se asigna a window.innerHeight.
Sintaxis

windowHeight

Parámetros: Esta función no acepta ningún parámetro.

El siguiente programa ilustra la variable windowHeight en p5.js:
Ejemplo-1:

function setup() {
  
    createCanvas(1000, 400);
  
    // Set text size to 40px
    textSize(20);
}
  
function draw() {
    background(200);
    rect(mouseX, mouseY, 30, 30);
  
    //Use of windowHeight Variable
    text("Window Height is " + windowHeight, 30, 40);
}

Producción:

Ejemplo-2:

function setup() {
  
    // set height to window height 
    height = windowHeight;
  
    //create Canvas of size 380*80 
    createCanvas(380, height);
}
  
function draw() {
    background(220);
    textSize(16);
    textAlign(CENTER);
    fill(color('Green'));
  
    //use of windowHeight variable
    text("windowHeight of Canvas is : "
         + height, 180, height / 2);
}

Producción:

Referencia: https://p5js.org/reference/#/p5/windowHeight

Publicación traducida automáticamente

Artículo escrito por sarthak_ishu11 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 *