Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tarea clase 5 - Nº1 #70

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions tareas/clase-5/Tarea-clase5-nº1.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
html, body{
margin : 0;
padding: 0;
}

html{
font-size: 200%;
}

body{
align-items: center;
display: flex;
flex-direction: column;
background-color: aqua;
}

h1{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

h2{
font-family: Didot, 'GFS Didot', serif;
font-size: 1rem;
}



#sueldo-anual{
width: 100%;
}

#salario-mensual{
display: flex;
flex-direction: column;
width: 100%;
}
28 changes: 24 additions & 4 deletions tareas/clase-5/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,32 @@
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> Tarea clase 5 | Nº1</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=GFS+Didot">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200">
<link rel="stylesheet" href="Tarea-clase5-nº1.css">
<title>Clase 5</title>
</head>

<body>
<header>
<h1 id="titulo">Tarea clase 5 - Nº1</h1>
<h2 class="subtitulo">Calculadora de sueldo mensual</h2>


</header>




<form>
<input type="number" placeholder="ingresa tu sueldo anual" id="sueldo-anual"/>
<button id= "boton-calcular">Calcular</button>
<div id="resultado">Tu sueldo mensual es de </div>
<input type="text" disabled id="salario-mensual"/>"
</form>
</body>
</html>

<script type="text/javascript" src="tarea-clase-5.js"></script>
</html>

24 changes: 24 additions & 0 deletions tareas/clase-5/tarea-clase-5.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,26 @@ $botonCalcular.onclick = function()
//cuando el usuario haga click en el botón "calcular", mostrar el salario mensual
// en una caja de texto deshabilitada. --> <input type="text" disabled id="salario-mensual"/>

const $botonCalcular = document.querySelector('#boton-calcular');

$botonCalcular.onclick = function (){
const sueldoAnual = Number(document.querySelector('#sueldo-anual').value);
let sueldoMensual = sueldoAnual / 12;

document.querySelector('#salario-mensual').value = sueldoMensual;

return false;
}










//TAREA: En otro archivo html (no Index) y otro archivo js (no tarea-clase-5.js),
// creá un formulario que capture el primer nombre, segundo nombre, apellido/s y edad del usuario
// también vamos a crear un <h1> que diga Bienvenido!
Expand Down Expand Up @@ -49,6 +69,10 @@ Ejemplo form:
// al apretar el botón "Calcular tiempo total", debe mostrar en un
// <strong> pre-creado el tiempo total de los videos.





//TAREA: En otro archivo distinto,
// Crear una lista de <ol> y <li> que contengan sólo números.
// Convertir esos números a un array y:
Expand Down