Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
Olá Galera, bom dia, estou precisando que esse tour seja iniciado sem a necessidade de clicar no link 'Começar Tour', alguém pode me ajudar?
<script type="text/javascript" >
$(document).ready(function(){
// $('#tour').mytour(); / simplest way to start /
// full options
$('#tour').mytour({
start: 0, // start at which step
buttons: { // buttons:
next: 'Próximo', // next step.
prev: 'Anterior', // previous step.
finish: 'Finalizar Tour', // stop presentation.
menu: false // show/ hide the dropdown menu with the steps
},
autoPlay: false, // (true/ false) if true, start the tour automaticaly
timer: 5000, // time elipsed before goes to the next step (if null, then don't goes)
steps: '#my-tour-steps', // which objects will contain the steps that will be displayed for the user.
stepHolder: 'li', // which tag is used to hold the step content
debug: false // (true/false) if set TRUE, log on console each step
});
});
</script>
<body>
<a href="#" id="tour" style="display: block" >Começar Tour</a>
</body>Carregando comentários...