下面这段代码是用来实现图片新闻的
复制代码代码如下:
índice var = 0;
var Temporizador = nulo;
función initGallery(){
para(var i=0; i< 4; i++){
document.getElementById("fPic"+i).style.display = "none";
document.getElementById("fTitl"+i).style.display = "none";
document.getElementById("fNum"+i).style.className = "numOff";
}
iniciarcambio();
setTimer();
}
función iniciarcambio(){
índice = índice % 4;
cambiarPic(índice);
cambiar título(índice);
cambiarNum(índice);
índice++;
}
función cambiarPic(índice){
para(var i=0; i<4;i++){
document.getElementById("fPic"+i).style.display = "none";
}
document.getElementById("fPic"+index).style.display = "bloque";
}
función cambiar título (índice) {
para(var i=0; i<4; i++){
document.getElementById("fTitl"+i).style.display = "none";
}
document.getElementById("fTitl"+index).style.display = "bloque";
}
función cambioNum(índice){
para(var i=0; i<4; i++){
document.getElementById("fNum"+i).className = "numOff";
}
document.getElementById("fNum"+index).className = "numOff numOn";
}
función borrarTimer(){
this.clearInterval(Temporizador);
}
función setTimer(){
Temporizador = ventana.setInterval(inicioCambio, 3000)
}
función setIndex(índice){
this.index = índice;
this.startChange();
}