Jump to content
php.lv forumi

jQuery animation un funkcija


ArnisR

Recommended Posts

Vārdu sakot, palaižot šo funkciju, visi SPAN elementi iekš #box sāk svārstīties uz augšu, uz leju. Problēma: kādā veidā var apturēt šo animāciju (piemēram, uzspiežot uz pogas u.tml.) ? Vienkārši $("#box").find("span").stop() nenostrādā!

 

 

function start(){

$("#box").find("span").each(function(){

 var hgt = rand(20, 150);


 $(this).animate({height: hgt}, 150, function(){
  start();
 });

});  

}

Edited by ArnisR
Link to comment
Share on other sites

Tev ir arī jāatrod veids kā iekš .each izpildīt return false.Pirmais kas ienāca prātā-ar pogu uzsetot stop atribūtu visiem span un pārbaudīt vai viņš eksistē.Ja sastapts,tad pārtraukt ciklu.Tāds bišk čerez žopu variants,bet varbūt strādās:

$('#stop').on('click', function(){
$("#box").find("span").attr('stop',1);
$("#box").find("span").stop();
$("#box").find("span").clearQueue();
});

Un iekš .each

if($(this).attr('stop')) return false;

Edited by 404
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.

Guest
Reply to this topic...

×   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.

Loading...
×
×
  • Create New...