Created
December 12, 2012 10:47
-
-
Save f3rn8nd0/4266840 to your computer and use it in GitHub Desktop.
Examen MariNieves y Fernando
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var array = new Array(); | |
console.log("Bienvenido a tu propio proyector de diapositivas"); | |
console.log("INSTRUCCIONES DE USO"); | |
console.log("Escribe: carrusel(el número de imágenes)"); | |
console.log("Una vez introducido el número, utiliza siguiente() para avanzar"); | |
console.log("y anterior() para retroceder"); | |
console.log("¡Feliz visionado!"); | |
var posicion = 0; | |
function carrusel(x){ | |
for (i = 0; i <= x; i++){ | |
array[i]=i; | |
console.log(i); | |
} | |
} | |
function siguiente(){ | |
posicion = posicion +1; | |
console.log(posicion); | |
} | |
function anterior(){ | |
posicion = posicion -1; | |
console.log(posicion); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment