Jump to content
  • 0

Анимация


user
 Share

Question

<div id='click' style='position:relative;' onmouseover='test();'>
<img src=#>
</div>
<script type='text/javascript'>
function test()
{obj=document.getElementById('click');
obj.style.top=obj.style.top+1+"px";
setInterval(test(),40);}
</script>

Помогите разобраться в чем дело.В IE сдвигается на 1px и выдает ошибку.А Мозилла зависает.Иногда немного,а иногда надолго.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

А так у тебя получилась бесконечная рекурсия. Введи переменную. Увеличивай ее каждый раз при заходе в функцию. Вызывай интервал только при начении переменной, скажем, меньше 100.

Edited by Ogalig
Link to comment
Share on other sites

  • 0

Спасибо за замечания,но проблема была в другом.Я каждый раз присваивал переменной ссылку на обьект.И почему-то не определялось значение у top.И это значение надо было перевести в числовое.

obj=document.getElementById('click');
obj.style.top=0;
function test()
{obj.style.top=parseInt(obj.style.top)+1+"px";
setInterval(test,40);}

Правда теперь скорость увеличивается. :)

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