33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
function galeriaHOR() {
|
|
// var num = document.getElementById('numeroDeImagenes').value;
|
|
// document.writeln(`<table border=1><tr>`);
|
|
//for (let i = 0; i < num; i++) {
|
|
//document.write(`<td><img src="./google.png" width=250px height=250px></td>`)
|
|
//}
|
|
//document.writeln(`</tr></table>`);
|
|
|
|
// Sacar el select y subsecuentemente el valor de este
|
|
var opcion = document.getElementById('opciones');
|
|
var valor = opcion.value;
|
|
|
|
// Sacar el número seleccionado por el usuario
|
|
var num = document.getElementById('numeroDeImagenes').value;
|
|
|
|
if (valor.toString() == "HOR") {
|
|
//var num = document.getElementById('numeroDeImagenes').value;
|
|
document.writeln(`<table border=1><tr>`);
|
|
for (let i = 0; i < num; i++) {
|
|
document.write(`<td><img src="./google.png" width=250px height=250px></td>`);
|
|
}
|
|
document.writeln(`</tr></table>`);
|
|
}
|
|
|
|
else {
|
|
document.writeln(`<table border=1>`);
|
|
for (let i = 0; i < num; i++) {
|
|
document.write(`<tr><td><img src="./google.png" width=250px height=250px></td></tr>`);
|
|
}
|
|
document.writeln(`</table>`);
|
|
}
|
|
}
|