You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Y le ponemos en el h2 el atributo 'alt' de la/las fotos filtradas.
73
75
newGalleryItem.innerHTML=`<h2>${photo.alt}</h2>`;
74
76
// Y por último le agregamos ese nuevo elemento a la galería. Utilicé el 'prepend' ya que quiero que se agregue al principio, para respetar el orden que simulo en el array.
75
-
gallery.prepend(newGalleryItem);
77
+
galleryContainer.prepend(newGalleryItem);
76
78
});
77
79
}
78
80
}
79
81
82
+
// Por algún motivo que desconozco no pude hacer funcionar esta función.
80
83
// Creamos una función que al cargarse la página simule que se trajeron fotos aleatoriamente. La misma cargará 8 fotos.
// Y le ponemos en el h2 el nombre de 'Foto' y entre paréntesis el número de foto. Ejemplo 'Foto(1)'.
88
91
galleryItem.innerHTML=`<h2>Foto(${i})</h2>`;
89
92
// Y por último le agregamos ese nuevo elemento a la galería. Utilicé el 'prepend' ya que quiero que se agregue al principio, para respetar el orden que simulo en el array.
0 commit comments