Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Animações com CSS3 | Animations with CSS3

Animações com CSS3 | Animations with CSS3

- SorocabaCSS 3ª edição (12/05/2018)

Juliana Negreiros

May 12, 2018
Tweet

More Decks by Juliana Negreiros

Other Decks in Technology

Transcript

  1. E COM ELE UM MUNDO NOVO REPLETO DE OPORTUNIDADES PARA

    INOVAR A ENTREGA DE INFORMAÇÕES PARA O USUÁRIO <3
  2. @keyframes animar { 0%{ transform: scale(1); } 50% { transform:

    scale(1.5); } 100%{ transform: scale(.5); } } .botao { animation: animar 1s; }