Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

79
Vistas
How to write a function that will return colors at random for a drawing pad

I am creating an simple etch a sketch design and need to create function that will input randomized colors upon hovering over the grid. So far I have created functions that some specific colors but I'm not sure where to go from there.

const grid = document.querySelector('.grid');

const blackButton = document.querySelector('.blackbutton');
blackButton.addEventListener('click', blkButton);

const clear = document.querySelector('.clearbutton')
clear.addEventListener('click', clearGrid);

const eraserButton = document.querySelector('.eraserbutton')
eraserButton.addEventListener('click', ersButton)

const rainbowButton = document.querySelector('.rainbowbutton')
rainbowButton.addEventListener('click', rbwButton)


function getGrid(gridNumber) {
  for (let i = 1; i <= gridNumber * gridNumber; i++) {
   const box = document.createElement('div');
   box.classList.add('box');
   grid.appendChild(box);
  }
 }

getGrid(16);


 function blkButton() {
 grid.querySelectorAll(".box").forEach(box => 
box.addEventListener("mouseover", () => {
box.style.background = "black";
 }))
}


function ersButton(){
  grid.querySelectorAll(".box").forEach(box => 
  box.addEventListener("mouseover", () => {
  box.style.background = "lightgray"
  }))
  }

  function rbwButton(){
  }




   function clearGrid() {
   const tgt = ".box"
   grid.querySelectorAll(".box").forEach(box => 
   box.removeAttribute('style') )
   }
about 4 years ago · Santiago Gelvez
1 Respuestas
Responde la pregunta

0

I did something very similar in Angular which I have shown here. This is for reference. Please modify syntax if required.

function blkButton() {
  grid.querySelectorAll(".box").forEach(box => 
  box.addEventListener("mouseover", () => {
  box.style.background = this.getColor();
 }))
}

 rgb = [];
 function getColor(){
    for (var i = 0; i < 3; i++) {
        this.rgb.push(Math.floor(Math.random() * 255));
   }
  return 'rgb(' + this.rgb.join(',') + ')';
 }
about 4 years ago · Santiago Gelvez Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda