Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

231
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda