Script de setInterval (Si, todavia)
Publicado por Alejandro (14 intervenciones) el 19/08/2019 17:52:46
Consegui hacer un avance, pero el set interval solo se aplica a una imagen (como si solo pudiese ejecutar una funcion). ¿Alguna pista?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<html>
<head>
<TITLE>Actividad 6.1</TITLE>
</head>
<body onload="arriba()">
<SCRIPT languaje="JavaScript">
var im1 = document.getElementById("un");
var primer = new Array("1.png","a.png");
var cp=0;
var im2 = document.getElementById("do");
var segundo = new Array("2.png","a.png");
var cs=0;
var im3 = document.getElementById("te");
var tercero = new Array("3.png","a.png");
var ct=0;
function cuatro() {document.getElementById('cu').src = "7.png";}
function cinco() {document.getElementById('ci').src = "7.png";}
function seis() {document.getElementById('se').src = "7.png";}
function cuatros() {document.getElementById('cu').src = "4.png";}
function cincos() {document.getElementById('ci').src = "5.png";}
function seiss() {document.getElementById('se').src = "6.png";}
var F;
var S;
var T;
function arriba() {
F = setInterval(first, 2000);
S = setInterval(sec, 2000);
T = setInterval(thir, 2000);
}
function first()
{document["un"].src = primer[cp]; cp++; if(cp>=primer.length) { cp=0;};}
function sec()
{document["do"].src = segundo[cp]; cp++; if(cp>=segundo.length) { cp=0;};}
function thir()
{document["te"].src = tercero[cp]; cp++; if(cp>=tercero.length) { cp=0;};}
//function third()
//{document["te"].src = tercero[cont]; cont++; if(cont>=tercero.length) { cont=0;};}
//setInterval("first()", 2000);
</script>
<TABLE BORDER=1><TR><TD><IMG src="1.png" width="100" height="100" border="0" id="un" name="im1"></TD><TD><IMG src="2.png" width="100" height="100" border="0" id="do"></TD><TD><IMG src="3.png" width="100" height="100" border="0" id="te"></TD></TR>
<TR><TD><IMG onmouseover="cuatro(this)" onmouseout="cuatros(this)" src="4.png" width="100" height="100" border="0" id="cu"></TD><TD><IMG onmouseover="cinco(this)" onmouseout="cincos(this)" src="5.png" width="100" height="100" border="0" id="ci"></TD><TD><IMG onmouseover="seis(this)" onmouseout="seiss(this)" src="6.png" width="100" height="100" border="0" id="se"></TD></TR>
</TABLE>
</body>
</html>
Valora esta pregunta
0