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

Mais conteúdo relacionado

Destaque

The Many Faces of Lady Kat
The Many Faces of Lady KatThe Many Faces of Lady Kat
The Many Faces of Lady KatAnne Fite
 
Search engineresults2010
Search engineresults2010Search engineresults2010
Search engineresults2010WSI Egypt
 
Search engine results 2010
Search engine results 2010Search engine results 2010
Search engine results 2010WSI Egypt
 
Acer client manager quick guide v1.1
Acer client manager quick guide v1.1Acer client manager quick guide v1.1
Acer client manager quick guide v1.1supann
 
Nón bảo hiểm andes
Nón bảo hiểm andesNón bảo hiểm andes
Nón bảo hiểm andesHòa Đặng
 
Nota Merenang gelora
Nota Merenang geloraNota Merenang gelora
Nota Merenang geloraSiti Hadijah
 

Destaque (7)

The Many Faces of Lady Kat
The Many Faces of Lady KatThe Many Faces of Lady Kat
The Many Faces of Lady Kat
 
Search engineresults2010
Search engineresults2010Search engineresults2010
Search engineresults2010
 
Search engine results 2010
Search engine results 2010Search engine results 2010
Search engine results 2010
 
ImagineNation
ImagineNationImagineNation
ImagineNation
 
Acer client manager quick guide v1.1
Acer client manager quick guide v1.1Acer client manager quick guide v1.1
Acer client manager quick guide v1.1
 
Nón bảo hiểm andes
Nón bảo hiểm andesNón bảo hiểm andes
Nón bảo hiểm andes
 
Nota Merenang gelora
Nota Merenang geloraNota Merenang gelora
Nota Merenang gelora
 

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/