Jump to content
  • 0

jQuery - последовательность операций


shooretz
 Share

Question

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

Имеется такой код:

$("#Img").animate({opacity: "0"}, "slow");

$("#Img").attr({ src: "new_img.jpg", alt: "New alt" });

$("#Img").animate({opacity: "1"}, "slow");

Этот код исполненяется в другом порядке: сначала происходит смена изображения, затем его скрытие и показ.

Почему это происходит и как добиться нужного эффекта?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Надо просто сделать задержку. Типа такого

<script type="text/javascript">
function test(id)
{
if (id==1)
{
$("#Img").animate({opacity: "0"}, "slow");
setTimeout("test(2)",1000);
}
else
{
$("#Img").attr({ src: "5.jpg", alt: "New alt" });
$("#Img").animate({opacity: "1"}, "slow");
}
}
</script>
<img src="3.jpg" onClick="test(1);" id="Img">

У меня нормально заработало

Link to comment
Share on other sites

  • 0

Анимация выполняется асинхронно, по завершении вызывается callback (3-й параметр) которым и нужно пользоваться.

$("#Img").animate({opacity: "0"}, "slow", function() {
$("#Img").attr({ src: "new_img.jpg", alt: "New alt" });
$("#Img").animate({opacity: "1"}, "slow");
});

ключевая ссылка по jQuery

http://docs.jquery.com/Main_Page

Edited by Jenek
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