Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

233
Visualizações
Building a step by step tutorial with JavaScript/css

We have a one-page call center web application and we want to build a self-training function with focusing on particular elements on the page and being able to press skip, next, back on the tutorial at any time. This is like a step-by-step guide on how to answer a call and go through the application's functionalities. Are there any other topics that can relate to our idea or any other links? Project is built in MVC C# and JavaScript/jQuery

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

I went through a research for getting some examples on how to start on the journey of creating this step by step instructive you want to achieve. There is a JS library we have been using and this is completely achievable with it. It's called GSAP: Green Sock documentation

I will say you can use the Timeline feature to manage the step by step operation and even give the capability to go back if the user needs to. Here is an example: Step previous and next example with Timeline GSAP

Here the code example of the JS section using GSAP:

var master = new TimelineLite({paused: true});

function getFirst() {
  var tl = new TimelineLite();
  tl.from("#a", 1, {autoAlpha:0, ease: Power1.easeOut})
  return tl;
}

function getSecond() {
  var tl = new TimelineLite();
  tl.from("#b", 1, {autoAlpha:0, ease: Power1.easeOut})
  return tl;
}

function getThird() {
  var tl = new TimelineLite();
  tl.from("#c", 1, {autoAlpha:0, ease: Power1.easeOut})
  return tl;
}

master.add(getFirst());
master.add(getSecond());
master.add(getThird());

document.getElementById("next").onclick = function(){master.play()};

document.getElementById("prev").onclick = function(){master.reverse()};

Checking on the documentation there is a lot more that you can do with it. Here is the link directly to the Timeline feature documentation: Timeline GSAP. This will give you a clear idea of what you can accomplish.

This is a good start for your needs, and after researching on the implementation and capabilities of this Library you will be capable of fully implementing the step by step training/instructive. After that the rest would be just a matter of being creative and play around with CSS and the proper JS code to give it the style and animation you want.

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda