Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

AlexandreHenrique

ativar autoplay em slide jQuery

Recommended Posts

Bom dia, tenho um slide em jQuery que está funcionado bem, porém ele não tem AutoPlay, quero adicionar essa funcionalidade em meu slide. Alguem pode me ajudar?

O código é esse:

 

$(function() {
      $('#slides').slidesjs({
        width: 940,
        height: 602,
        navigation: {
        effect: "fade"
        },
        pagination: {
          effect: "fade"
        },
        effect: {
          fade: {
            speed: 400
          }
        }
      });
    });

Compartilhar este post


Link para o post
Compartilhar em outros sites

http://stackoverflow.com/questions/21226158/slidesjs-autoplay-not-working

 

auto: true,

$(function() {
      $('#slides').slidesjs({
        auto: true,
        width: 940,
        height: 602,
        navigation: {
        effect: "fade"
        },
        pagination: {
          effect: "fade"
        },
        effect: {
          fade: {
            speed: 400
          }
        }
      });
    });

Compartilhar este post


Link para o post
Compartilhar em outros sites

Não rolou. Mas ajudou muito!

Fiz outra alteração e deu certo.

Obg!

 

O código ficou assim:

$(function() {
      $('#slides').slidesjs({
        width: 940,
        height: 602,
        navigation: {
        effect: "fade"
        },
        pagination: {
          effect: "fade"
        },
        effect: {
          fade: {
            speed: 400
          }
        },
        play: {
            active: true,
            auto: true,
       }    
          
      });
    });

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.