Jump to content
Fórum Script Brasil
  • 0

Animação (Ajuda)


satango

Question

Olá pessoal, sou novo aqui e já chego com um pedido de ajuda.

Estou fazendo um slider que a imagem passa vai ate o final e volta. Tambem tem os controle de STOP e PLAY .

O problema é que quando a imagem esta indo para a esquerda e eu clico em STOP ela para depois clico em PLAY ela prossegue para esquerda, mais quando a imagem esta voltando para direita e eu clico em STOP e depois em PLAY ela não continua indo para direita, ela volta para esquerda.

Abaixo meu código.

$(document).ready(function(){
    var mgLeft =3550-$(window).width();    
    var acao = 2;         
    $("#imgSlider").everyTime(10, function(){ 
            $("#imgSlider").animate({marginLeft:-mgLeft}, 40000, 'linear').animate({marginLeft:"0px"}, 40000, 'linear');
    });    
    
    $("#stop").click(function(){
        if(acao > 1){
            acao = 0;            
            $("#imgSlider").stop(true).stopTime();    
                
        }else if(acao < 1){
            acao = 2;
            $("#imgSlider").everyTime(10, function(){                
                $("#imgSlider").animate({marginLeft:-mgLeft}, 40000, 'linear').animate({marginLeft:"0px"}, 40000, 'linear');
            });
        }        
    });

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...