Jump to content
  • 0

Вопрос по ЯваСкрипт


Imevil
 Share

Question

Здрасте,у меня такой вот ламерский вопрос:почитав небольшую книженцию по ЯваСкрипт,наткнулся на пример по мультипликации.Собственно вот он:

<HTML> 
<HEAD>
<SCRIPT> function multi_pulti()
{ img_array = new Array() img_array[0] = new Image(50,100) .... img_array[99] = new Image(50,100) img_array[0].src = "IMAGE1.GIF" ... img_array[99].src = "IMAGE100.GIF" n=0 while(n==0) { document.images[0].src = img_array[0].src ... } }
</SCRIPT>
</head>
<body onLoad="multi_pulti()">
<IMG SRC=IMAGE1.GIF>
</body>
</html>

Естессно все Имейджи я поставил свои.Но почему-то этот скрипт не работат:)Обидно((

Буду очень благодарен за помощь в решении этого вопроса.Ещ? раз всем спасибо))

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Лажа...

<HTML> 
<HEAD>
<SCRIPT>
var i=1;
function multi_pulti()
{
i++;
image=document.getElementById("im");
image.src=i+".jpg";
image.title=i;
setTimeout('multi_pulti()', 5000)
}
</SCRIPT>
</head>
<body onLoad="setTimeout('multi_pulti()', 5000)">
<IMG SRC="1.jpg" height="30%" id="im" title="0"/>
</body>
</html>

мож так ...

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy