SlideShare uma empresa Scribd logo
1 de 12
Baixar para ler offline
$(function() {
      $('#start').click(function() {

              $('#first, #second').fadeIn(1000, function() {

                    $('#third, #forth').fadeIn(500, function() {

                          $('#fifth, #sixth, #seventh').fadeIn(750, function() {

                                $('#eight').fadeIn(800, function() {

                                      $('#ninth, #tenth').fadeIn('slow');

                                });
                          });
                    });

              });

        });
  });

http://stackoverflow.com/questions/2556184/jquery-animation-queues
$(function() {
      $('#start').click(function() {

              $('#first, #second').fadeIn(1000, function() {

                    $('#third, #forth').fadeIn(500, function() {

                          $('#fifth, #sixth, #seventh').fadeIn(750, function() {

                                $('#eight').fadeIn(800, function() {

                                      $('#ninth, #tenth').fadeIn('slow');

                                });
                          });
                    });

              });

        });
  });

http://stackoverflow.com/questions/2556184/jquery-animation-queues
MVC - MV*
http://bit.ly/JSpatterns
A demo da palestra e muito
material bacana tá disponível
            aqui:
http://learn.knockoutjs.com/
todomvc.com
tiago.totti@
developit.com.br
FB tiagomtotti

DevRS.NET - Totti - Knockout

  • 1.
  • 2.
  • 3.
  • 4. $(function() { $('#start').click(function() { $('#first, #second').fadeIn(1000, function() { $('#third, #forth').fadeIn(500, function() { $('#fifth, #sixth, #seventh').fadeIn(750, function() { $('#eight').fadeIn(800, function() { $('#ninth, #tenth').fadeIn('slow'); }); }); }); }); }); }); http://stackoverflow.com/questions/2556184/jquery-animation-queues
  • 5. $(function() { $('#start').click(function() { $('#first, #second').fadeIn(1000, function() { $('#third, #forth').fadeIn(500, function() { $('#fifth, #sixth, #seventh').fadeIn(750, function() { $('#eight').fadeIn(800, function() { $('#ninth, #tenth').fadeIn('slow'); }); }); }); }); }); }); http://stackoverflow.com/questions/2556184/jquery-animation-queues
  • 6.
  • 9.
  • 10. A demo da palestra e muito material bacana tá disponível aqui: http://learn.knockoutjs.com/