Skip to content

Commit

Permalink
Create principal.js
Browse files Browse the repository at this point in the history
Estructura básica para comenzar a ver como se comporta la primera herramienta, luego la ajusto
  • Loading branch information
NicoPauer authored Aug 20, 2023
1 parent 26be01b commit da80fbe
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions principal.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// Se encarga de la parte visual y la interacción con los distintos formularios

const formularioColor = document.querySelector("#texto-colores");

let colorIngresado = obtenerColor(formularioColor.value);
/* Si el color lo puede ver bien muestra imagen info-gatos.svg, sino
muestra gato-triste.svg */

function analizarColor()
{
if (colorGatuno(colorIngresado))
{
alert("Si lo vé");
}
else
{
alert("No lo vé");
}
}
// Espero evento cambio en el valor de formulario de color

0 comments on commit da80fbe

Please sign in to comment.