├── clase-15 ├── After │ ├── styles.css │ ├── img │ │ ├── mac-air.jpg │ │ ├── apple-tv.jpg │ │ ├── iphone-x.jpg │ │ ├── camara-iqual.jpg │ │ ├── xiaomi-mi-9.jpg │ │ ├── motorola-pulse.jpg │ │ ├── mouse-logitech.jpg │ │ ├── notebook-lenovo.jpg │ │ ├── parlante-kalley.png │ │ └── smart-tv-novatech.jpg │ ├── index.html │ ├── json │ │ └── productos.json │ └── script.js ├── index.html └── script.js ├── clase-7 ├── After │ ├── index.js │ ├── index.html │ └── script.js ├── index.html └── script.js ├── Clase-13 ├── styles.css ├── index.html └── script.js ├── clase-8 ├── styles.css ├── index.html └── script.js ├── clase-10 ├── styles.css ├── index.html └── script.js ├── clase-12 ├── index.html └── script.js ├── clase-14 ├── index.html └── script.js ├── clase-2 ├── index.html └── script.js ├── clase-3 ├── index.html └── script.js ├── clase-4 ├── index.html └── script.js ├── clase-5 ├── index.html ├── After │ ├── index.html │ ├── script.js │ └── Pokemon.js └── script.js ├── clase-6 ├── index.html └── script.js ├── clase-1 ├── index.html └── script.js ├── clase-11 ├── index.html └── script.js └── clase-9 ├── index.html └── script.js /clase-15/After/styles.css: -------------------------------------------------------------------------------- 1 | img { 2 | width: 45px; 3 | } -------------------------------------------------------------------------------- /clase-7/After/index.js: -------------------------------------------------------------------------------- 1 | let numero = 342.1412423421 2 | 3 | console.log(parseFloat(numero.toFixed(2))) -------------------------------------------------------------------------------- /Clase-13/styles.css: -------------------------------------------------------------------------------- 1 | /*body { 2 | font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; 3 | }*/ -------------------------------------------------------------------------------- /clase-15/After/img/mac-air.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franciscopugh/37475-Js-2022/HEAD/clase-15/After/img/mac-air.jpg -------------------------------------------------------------------------------- /clase-15/After/img/apple-tv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franciscopugh/37475-Js-2022/HEAD/clase-15/After/img/apple-tv.jpg -------------------------------------------------------------------------------- /clase-15/After/img/iphone-x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franciscopugh/37475-Js-2022/HEAD/clase-15/After/img/iphone-x.jpg -------------------------------------------------------------------------------- /clase-15/After/img/camara-iqual.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franciscopugh/37475-Js-2022/HEAD/clase-15/After/img/camara-iqual.jpg -------------------------------------------------------------------------------- /clase-15/After/img/xiaomi-mi-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franciscopugh/37475-Js-2022/HEAD/clase-15/After/img/xiaomi-mi-9.jpg -------------------------------------------------------------------------------- /clase-15/After/img/motorola-pulse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franciscopugh/37475-Js-2022/HEAD/clase-15/After/img/motorola-pulse.jpg -------------------------------------------------------------------------------- /clase-15/After/img/mouse-logitech.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franciscopugh/37475-Js-2022/HEAD/clase-15/After/img/mouse-logitech.jpg -------------------------------------------------------------------------------- /clase-15/After/img/notebook-lenovo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franciscopugh/37475-Js-2022/HEAD/clase-15/After/img/notebook-lenovo.jpg -------------------------------------------------------------------------------- /clase-15/After/img/parlante-kalley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franciscopugh/37475-Js-2022/HEAD/clase-15/After/img/parlante-kalley.png -------------------------------------------------------------------------------- /clase-15/After/img/smart-tv-novatech.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franciscopugh/37475-Js-2022/HEAD/clase-15/After/img/smart-tv-novatech.jpg -------------------------------------------------------------------------------- /clase-8/styles.css: -------------------------------------------------------------------------------- 1 | .productos { 2 | background-color: aquamarine; 3 | margin:2.5px; 4 | padding: 1px; 5 | color:black; 6 | } -------------------------------------------------------------------------------- /clase-10/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: antiquewhite; 3 | color:black; 4 | transition: ease 1s; 5 | } 6 | 7 | .darkMode { 8 | background-color: black; 9 | color:white; 10 | } -------------------------------------------------------------------------------- /clase-12/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |Lorem, ipsum dolor sit amet consectetur adipisicing elit. Dolorum voluptatibus provident ad, nesciunt cumque esse facilis quam? Ullam, modi velit magni nihil optio, cumque ad repellendus id reprehenderit impedit quos.
11 |Lorem, ipsum.
12 |Lorem, ipsum dolor.
13 | 14 | 15 | -------------------------------------------------------------------------------- /clase-15/After/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Commodi repellendus nulla atque? Voluptate a cum non ab delectus, nisi molestiae voluptates. Autem provident voluptate ex quos quis itaque fugit temporibus!
14 |Lorem ipsum dolor sit.
15 |Lorem, ipsum dolor.
16 |Hola coders
"*/ 9 | 10 | 11 | class Producto { 12 | constructor(id, nombre, marca, precio,stock) { 13 | this.id = id 14 | this.nombre = nombre 15 | this.marca = marca 16 | this.precio = precio 17 | this.stock = stock 18 | } 19 | } 20 | 21 | const producto1 = new Producto(1, "Yerba Mate", "La yerbita", 400, 20) 22 | const producto2 = new Producto(2, "Fideos", "Fidein", 100, 25) 23 | const producto3 = new Producto(3, "Cafe", "Le Cafe", 500, 22) 24 | const producto4 = new Producto(4, "Arroz", "Arrocin", 200, 15) 25 | const producto5 = new Producto(5, "Lentejas", "Lentejin", 250, 30) 26 | 27 | const productos = [producto1, producto2, producto3, producto4, producto5] 28 | 29 | const divProductos = document.getElementById('productos') 30 | 31 | productos.forEach(productoArray => { 32 | divProductos.innerHTML += ` 33 |Marca: ${productoArray.marca}
37 |Precio: $${productoArray.precio}
38 |Stock: ${productoArray.stock}
39 | 40 |${tarea.descripcion}
45 | 46 |${user.email}
77 || # | 31 |Nombre | 32 |Marca | 33 |Modelo | 34 |Precio | 35 |Stock | 36 |Imagen | 37 |38 | |
|---|
Oficial:$ ${oficial}
15 |Solidario:$ ${solidario}
16 |MEP:$ ${mep}
17 |CCL:$ ${ccl}
18 |Blue:$ ${blue}
19 |CCB:$ ${ccb}
20 |Provincia: ${state}
52 |Pais: ${country}
53 |Temperatura: ${temp} °C
54 |Sensacion Termica: ${sensTermica} °C
55 |Humedad: ${humedad}%
56 |Presion: ${presion} hPa
57 |Descripcion: ${desClima}
58 |$${producto.precio}
28 |${producto.stock}
29 | 30 |