Jump to content
  • 0

return из ф-ии с таймером


NikuZ
 Share

Question

Добрый день. Помогите решить проблему с возвратом из функции. Функция выполняет плавное появление объекта, переводит его из прозрачного состояния в видимое. Вот мне нужно чтобы ф-ия возвращала "true" после полного появления объекта.

Как примитивный пример рекурсии приведу:

contactBlock.animate=function(x){
if(x<100){
x++;
return this.animate(x)
}
else{
return true;
}
}

Не могу сделать так-же с таймером. Замыкания не помогли. Спасибо.

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0
contactBlock.anime=function(obj,trfl,n_op){
if(opcity<n_op){
opcity+=1;
if(IE==null)
obj.style.opacity=opcity/10;
else
obj.style.filter="alpha(opacity:"+(opcity*10)+")";

timeContact=setTimeout(
function(obj,n_op){
return function(){
contactBlock.anime(obj,true,n_op);
}
}(obj,n_op), 30);
}
else{
clearTimeout(timeContact);
return true;
}
}
if(contactBlock.anime(obj,true,10))
бла...бла...бла...

Link to comment
Share on other sites

  • 0

Теперь понял :) На самом деле меня этот вопрос тоже уже давно интерисует, но несколько в другом аспекте, у меня не таймер, а диалоговое окно в дизайне сайта, и я хочу что-бы оно работало так-же, как confirm, возворащая результат, но понятно, что результат оно может вернуть только после нажатия на кнопку, а это уже другой исполняемый поток кода будет.

Link to comment
Share on other sites

  • 0

Лучше всего использовать какойнибудь JS framework... так по мелочам отвлекаться не будешь.

prototype

mootools

Сам пытался изобретать велосипед, тратя время, но все же смирился с чужим кодом :)

Хотя с другой стороны ? бесценный опыт :)

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