下面这段代码是用来实现图片新闻的
复制代码代码如下:
índice var = 0;
var Temporizador = null;
função initGallery(){
for(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";
}
startChange();
setTimer();
}
função inícioAlterar(){
índice = índice% 4;
alterarPic(índice);
alterarTitl(índice);
alterarNum(índice);
índice++;
}
função alterarPic(índice){
for(var i=0; i<4;i++){
document.getElementById("fPic"+i).style.display = "none";
}
document.getElementById("fPic"+index).style.display = "bloco";
}
função changeTitl(índice){
for(var i=0; i<4; i++){
document.getElementById("fTitl"+i).style.display = "none";
}
document.getElementById("fTitl"+index).style.display = "bloco";
}
função alterarNum(índice){
for(var i=0; i<4; i++){
document.getElementById("fNum"+i).className = "numOff";
}
document.getElementById("fNum"+index).className = "numOff numOn";
}
função clearTimer(){
this.clearInterval(Temporizador);
}
função setTimer(){
Temporizador = window.setInterval(startChange, 3000)
}
function setIndex(índice){
este.index = índice;
this.startChange();
}