-
Notifications
You must be signed in to change notification settings - Fork 0
/
oferta.js
43 lines (25 loc) · 1.18 KB
/
oferta.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const contenedor = document.querySelector('.flex-container')
let contador = 0;
function crearLlave(nombre, modelo, precio){
contador ++;
img = "<img class = 'img3' src = 'https://images.vexels.com/media/users/3/193473/preview2/b9db46da0bcef4d45ddaccef807f7e2b-maqueta-de-empaque-de-bolsa-de-cafe.jpg'>";
nombre = `<h2>${nombre}</h2>`;
Región = `<h3 id='${modelo}'>${modelo}</h3>`;
precio = `<p> Precio: <b>${precio}</b></p>`;
return[img, nombre,modelo, precio]
}
let documentFragment = document.createDocumentFragment();
for (var i = 1; i <= 3 ; i++ ){
let modeloRandom = Math.round(Math.random()*10000);
let precioRandom = Math.round(Math.random()*10000);
let llave = crearLlave(`Oferta ${i}`,`Referencia ${modeloRandom}`, `precio COP $${precioRandom}` )
let div = document.createElement('DIV');
div.addEventListener('click', ()=>{
document.querySelector('.key-data').value = modeloRandom; })
div.tabIndex=i;
div.classList.add(`item-${i}`,'flex-item');
div.innerHTML = llave[0] + llave[1] + llave[2] + llave[3];
documentFragment.appendChild(div)
}
contenedor.appendChild(documentFragment)
contenedor.changeHidden