Created
December 12, 2012 10:37
-
-
Save DeividSaenz/4266777 to your computer and use it in GitHub Desktop.
Examen: Diapositivas (parte 1) por Clémence Desvé
& David Sáenz
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
// Cleménce Desvé | |
// DeividSaenz | |
// EXAMEN 1 | |
var lista = new Array(); | |
function crearLista(n){ // n es el número de diapositivas que habrá en la lista | |
for (var i=0 ; i<n ; i++) { | |
lista[i] = "diapositiva "+(i+1); // cada espacio del arreglo, tiene como valor el número de la diapositiva (no hay diapositva 0) | |
}; | |
} | |
function siguiente(){ | |
for (var i = 0; i < lista.length ; i++) { | |
if (i = (lista.length-1)) { // la ultima posicion | |
console.log(lista[0]); | |
}else{ | |
console.log(lista[i+1]); | |
}; | |
}; | |
} | |
function anterior(){ | |
for (var i = 0; i < lista.length ; i++) { | |
if (i = 0 { // la primera posicion | |
console.log(lista[(lista.length-1)]); | |
}else{ | |
console.log(lista[i-1]); | |
}; | |
}; | |
} | |
function play(seg){ // seg en cuantos segundos cambiara de diapo | |
var d = new Date(); | |
var tmp = d.getSeconds(); | |
if (tmp==seg) { | |
siguiente(); | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment