Jump to content
  • 0

простое слайд шоу


mamadeja
 Share

Question

Пишу вам впервые, так что поправте если что не так. только начинаю учить джава скрипт, хотя немного знаю с++, так что легче. но вот это упорно не работает. подозреваю что не правильно работаю с SetInterval. а вообще не знаю, где ошиблась. файлы называэться по порядку 1.jpg 2.jpg и тыды. разметку хтмл не облюдала, на другом примере, где картинка менялась по событию onclick все работало

<HTML>
<IMG ID = "myimg" SRC = '1.jpg' onmouseover = "slideshow()" onmouseout="stopsl()">

<script>
var name=1
var timer=0
function nextimg(vsego){

if(name<vsego)
name++
else
name=1

document.all.myimg.src = name +'.jpg'
}

function slideshow()
{
timer=window.setInerval("nextimg(5)",500)
}

function stopsl()
{
window.clearInterval(timer)
}

</SCRIPT>
</HTML>

спасибо за внимание!

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

ИМХО:

1. Лучше расставить знаки препинания, скобки {}.

2. Вроде "document.all."-это конструкция скорее для IE, попробуй может этот скрипт работает в IE. Лучше использовать getElementById("") - почитай о нём в инете.

3. ну и посмотри, все таки, про html, скорее всего скрипт желательно положить в <head></head>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 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